Skip to content
VS Code

proton mail mcp for VS Code

io.github.alexendros/proton-mail-mcp

Proton Mail MCP via Bridge (IMAP/SMTP) · 13 tools · dual transport stdio + HTTP.

client:VS Code transport:stdio runtime:npm

Install proton mail mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "proton-bridge-host",
      "description": "PROTON_BRIDGE_HOST",
      "password": true
    },
    {
      "type": "promptString",
      "id": "proton-imap-port",
      "description": "PROTON_IMAP_PORT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "proton-smtp-port",
      "description": "PROTON_SMTP_PORT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "proton-username",
      "description": "PROTON_USERNAME",
      "password": true
    },
    {
      "type": "promptString",
      "id": "proton-password",
      "description": "PROTON_PASSWORD",
      "password": true
    }
  ],
  "servers": {
    "proton-mail-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@alexendros/proton-mail-mcp"
      ],
      "env": {
        "PROTON_BRIDGE_HOST": "${input:proton-bridge-host}",
        "PROTON_IMAP_PORT": "${input:proton-imap-port}",
        "PROTON_SMTP_PORT": "${input:proton-smtp-port}",
        "PROTON_USERNAME": "${input:proton-username}",
        "PROTON_PASSWORD": "${input:proton-password}"
      }
    }
  }
}

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

proton mail mcp in other clients