clawaimail for VS Code
io.github.joansongjr/clawaimail
Email infrastructure for AI agents. Create inboxes, send/receive email, and search messages.
client:VS Code
transport:stdio
runtime:npm
Install clawaimail in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "clawaimail-api-key",
"description": "CLAWAIMAIL_API_KEY",
"password": true
}
],
"servers": {
"clawaimail": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"clawaimail-mcp"
],
"env": {
"CLAWAIMAIL_API_KEY": "${input:clawaimail-api-key}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs