ZeroDrop for VS Code
dev.zerodrop/zerodrop-mcp
Disposable email inboxes for AI agents — OTPs and magic links auto-extracted. No signup needed.
client:VS Code
transport:stdio
runtime:npm
Install ZeroDrop in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "zerodrop-api-key",
"description": "ZERODROP_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "zerodrop-base-url",
"description": "ZERODROP_BASE_URL",
"password": true
}
],
"servers": {
"zerodrop-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"zerodrop-mcp"
],
"env": {
"ZERODROP_API_KEY": "${input:zerodrop-api-key}",
"ZERODROP_BASE_URL": "${input:zerodrop-base-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs