mcp server tempmail for VS Code
io.github.selenium39/mcp-server-tempmail
MCP server for temporary email management using ChatTempMail API
client:VS Code
transport:stdio
runtime:npm
Install mcp server tempmail in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "tempmail-api-key",
"description": "TEMPMAIL_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "tempmail-base-url",
"description": "TEMPMAIL_BASE_URL",
"password": true
}
],
"servers": {
"mcp-server-tempmail": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"mcp-server-tempmail"
],
"env": {
"TEMPMAIL_API_KEY": "${input:tempmail-api-key}",
"TEMPMAIL_BASE_URL": "${input:tempmail-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