Skip to content
VS Code

mcp for VS Code

io.github.agenticmail/mcp

Real email and SMS for AI agents — send mail, receive verification codes, drive a real inbox.

client:VS Code transport:stdio runtime:npm

Install mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "agenticmail-api-key",
      "description": "AGENTICMAIL_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "agenticmail-master-key",
      "description": "AGENTICMAIL_MASTER_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "agenticmail-api-url",
      "description": "AGENTICMAIL_API_URL",
      "password": true
    }
  ],
  "servers": {
    "mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@agenticmail/mcp"
      ],
      "env": {
        "AGENTICMAIL_API_KEY": "${input:agenticmail-api-key}",
        "AGENTICMAIL_MASTER_KEY": "${input:agenticmail-master-key}",
        "AGENTICMAIL_API_URL": "${input:agenticmail-api-url}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

mcp in other clients