Drop to CDN for VS Code
io.github.nexus-jpf/droptocdn
Upload files and get instant public CDN URLs from Claude Desktop, Cursor, and other MCP hosts.
client:VS Code
transport:stdio
runtime:npm
Install Drop to CDN in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "droptocdn-api-key",
"description": "DROPTOCDN_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "droptocdn-api-url",
"description": "DROPTOCDN_API_URL",
"password": true
}
],
"servers": {
"droptocdn": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"mcp-server-droptocdn"
],
"env": {
"DROPTOCDN_API_KEY": "${input:droptocdn-api-key}",
"DROPTOCDN_API_URL": "${input:droptocdn-api-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs