Proton MCP Server

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

Local serverstdioTypeScript

What is the Proton MCP server?

Connect Proton to Claude, Cursor or any other MCP client and it stops being a tab you switch to. Proton Mail MCP via Bridge (IMAP/SMTP) · 13 tools · dual transport stdio + HTTP. The proton mcp server is what makes that connection.

What the server does

El agente analiza el inbox y presenta un plan de carpetas, etiquetas y alertas sin aplicar cambios. Desactiva AGENT_DRY_RUN para ejecutar.

Installation

The server ships on npm as @alexendros/protonsuite-agent, so your MCP client can launch it on demand — there is no separate build step. Add the server block to your client's configuration, restart it, and the tools register themselves.

Available tools

The toolset is worth reading before you wire it up, because it tells you what the integration is really for:

  • Producto — Tools
  • Mail — 14
  • Pass — 4
  • Drive — 8
  • Calendar — stub
  • Suite — 1
  • Conectores — The Conectores tool exposed by this server
  • Playbooksplaybooks/ — workflows predefinidos: onboarding, organize inbox, triage, fraud detection, pass audit, daily briefing, setup checklist
  • Seguridad — The Seguridad tool exposed by this server

Credentials and setup notes

Configuration is passed through the environment: MCP_TRANSPORT, PROTON_BRIDGE_USER, PROTON_BRIDGE_PASS, PROTON_MAIL_FROM, PROTON_BRIDGE_TLS_INSECURE, PROTON_PASS_ENABLED, PROTON_PASS_BRIDGE_PATH. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

Worth knowing first

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • With 9 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Proton.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Where it fits

Plenty of team communication servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Proton's toolset — Producto, Mail, Pass and 6 more — is a fair guide to whether it matches your workflow. It is maintained by Alexendros; worth a glance at recent repository activity before you build anything load-bearing on it.

We check each listing at SyncDev against the project's documentation before it goes live — if something here drifts out of date, it is a bug worth reporting.

Available tools

ToolWhat it does
ProductoTools
Mail14
Pass4
Drive8
Calendarstub
Suite1
ConectoresThe Conectores tool exposed by this server.
Playbooks[playbooks/](./playbooks/) — workflows predefinidos: onboarding, organize inbox, triage, fraud detection, pass audit, daily briefing, setup checklist.
SeguridadThe Seguridad tool exposed by this server.

How to install the Proton MCP server

### 3. Conectar tu cliente MCP

```jsonc
{
  "mcpServers": {
    "protonsuite": {
      "command": "npx",
      "args": ["-y", "@alexendros/protonsuite-agent", "protonsuite-mcp"],
      "env": {
        "MCP_TRANSPORT": "stdio",
        "PROTON_BRIDGE_USER": "you@proton.me",
        "PROTON_BRIDGE_PASS": "your-bridge-password",
        "PROTON_MAIL_FROM": "you@proton.me",
        "PROTON_BRIDGE_TLS_INSECURE": "true",
        "PROTON_PASS_ENABLED": "true",
      },
    },
  },
}

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
MCP_TRANSPORTConfiguration value read at startup.Optional
PROTON_BRIDGE_USERConfiguration value read at startup.Optional
PROTON_BRIDGE_PASSConfiguration value read at startup.Optional
PROTON_MAIL_FROMConfiguration value read at startup.Optional
PROTON_BRIDGE_TLS_INSECUREConfiguration value read at startup.Optional
PROTON_PASS_ENABLEDConfiguration value read at startup.Optional
PROTON_PASS_BRIDGE_PATHFilesystem location the server is allowed to use.Optional

Example prompts to try

  • Use Proton to Producto.
  • Use Proton to Mail.
  • Use Proton to Pass.

Frequently asked questions

It connects Proton to MCP-compatible AI assistants such as Claude and Cursor, exposing 9 tools (Producto, Mail, Pass, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Proton directly.