mcp for VS Code
ai.justdrop/mcp
Live, end-to-end encrypted, ephemeral file transfer between your AI agent and any device.
client:VS Code
transport:stdio
runtime:npm
Install mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "justdrop-root",
"description": "JUSTDROP_ROOT",
"password": true
},
{
"type": "promptString",
"id": "justdrop-default-expiry-minutes",
"description": "JUSTDROP_DEFAULT_EXPIRY_MINUTES",
"password": true
}
],
"servers": {
"mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"justdrop-mcp"
],
"env": {
"JUSTDROP_ROOT": "${input:justdrop-root}",
"JUSTDROP_DEFAULT_EXPIRY_MINUTES": "${input:justdrop-default-expiry-minutes}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs