truncus mcp server for VS Code
io.github.codevanmoose/truncus-mcp-server
Send transactional emails from AI agents via Truncus. Validate, track delivery, and manage domains.
client:VS Code
transport:stdio
runtime:npm
Install truncus mcp server in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "truncus-api-key",
"description": "TRUNCUS_API_KEY",
"password": true
}
],
"servers": {
"truncus-mcp-server": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@truncus/mcp-server"
],
"env": {
"TRUNCUS_API_KEY": "${input:truncus-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