vaemail for VS Code
io.github.vaemail/vaemail
Email infrastructure for AI agents: send, authenticate domains, track delivery, diagnose issues.
client:VS Code
transport:stdio
runtime:npm
Install vaemail in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "vaemail-api-key",
"description": "VAEMAIL_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "vaemail-base-url",
"description": "VAEMAIL_BASE_URL",
"password": true
}
],
"servers": {
"vaemail": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"vaemail"
],
"env": {
"VAEMAIL_API_KEY": "${input:vaemail-api-key}",
"VAEMAIL_BASE_URL": "${input:vaemail-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