protonmail-mcp
MCP server that gives AI coding agents access to ProtonMail via Proton Bridge, enabling secure search, read, draft, and send of emails while keeping decrypted mail local.
README
proton-mail-bridge-mcp
Give your AI coding agent access to your ProtonMail — search, read, draft, and send — from Claude Code, Claude Desktop, Cursor, or any MCP client.
"Check my Proton and tell me anything I need to deal with today." "Find Sarah's last email and draft a reply saying Thursday at 2pm works — don't send it yet."
Because Proton is end-to-end encrypted, there's no public mail API — so this talks to Proton
Bridge, the official local gateway Proton ships for exactly this. Everything stays on 127.0.0.1;
your decrypted mail never leaves your machine, and nothing here is a hosted service.
Before you start — the one requirement
You need Proton Bridge running on the same machine.
- Bridge requires a paid Proton plan (Mail Plus / Proton Unlimited). Free Proton accounts can't use Bridge, and therefore can't use this. That's a Proton limitation, not ours.
- Bridge runs on macOS, Windows, and Linux (headless via
protonmail-bridge --clion servers). - Bridge gives each account its own generated IMAP/SMTP username & password — you'll use those here, not your normal Proton login.
Install
Quickest — run the setup wizard. It mirrors Bridge's Mailbox details panel field-for-field (paste each value using Bridge's copy buttons), tests reading and sending, and writes the config:
npx proton-mail-bridge-mcp setup
Then register it with your MCP client, e.g. Claude Code:
claude mcp add protonmail --scope user -- npx -y proton-mail-bridge-mcp
That's it. Prefer to configure by hand instead of the wizard? Read on.
Manual configuration
Tell it how to reach Bridge — either environment variables or a config file.
Config file (~/.config/proton-mail-bridge-mcp/config.json):
{
"user": "you@proton.me",
"pass": "your-bridge-generated-password",
"imapPort": 1143,
"smtpPort": 1025,
"imapSecurity": "STARTTLS",
"smtpSecurity": "STARTTLS"
}
Copy all of these from Bridge → your account → Mailbox details (the panel with IMAP and SMTP columns). Two things people get wrong:
- Copy the password, don't type it. Use Bridge's copy button. A single mis-transcribed character
(an
lvsI, anOvs0) fails as"no such user"— see Troubleshooting. - Match the
Securityfield for each of IMAP and SMTP — they can differ. Bridge shows a Security value under both columns (STARTTLSorSSL), and on some setups IMAP is STARTTLS while SMTP is SSL. SetimapSecurity/smtpSecurityto exactly what Bridge shows, or sending can fail even though reading works.
Or environment variables: PROTONMAIL_USER, PROTONMAIL_PASS, PROTONMAIL_IMAP_PORT,
PROTONMAIL_SMTP_PORT, PROTONMAIL_IMAP_SECURITY, PROTONMAIL_SMTP_SECURITY. (See
config.example.json for every option, including downloadDir and readOnly.)
Check it works before wiring it into an agent:
npx proton-mail-bridge-mcp doctor
That connects to Bridge, authenticates, and lists your mailboxes — so any setup problem shows up here with a clear message instead of failing cryptically mid-conversation.
Other MCP clients
Any MCP client works — point it at the proton-mail-bridge-mcp command over stdio. For a JSON-config client
(Claude Desktop, Cursor, …):
{
"mcpServers": {
"protonmail": {
"command": "npx",
"args": ["-y", "proton-mail-bridge-mcp"],
"env": { "PROTONMAIL_USER": "you@proton.me", "PROTONMAIL_PASS": "…" }
}
}
}
Tools
Deliberately small — eight, and only eight.
| Tool | What it does | |
|---|---|---|
search_mail |
Find messages by text / from / to / subject / date (no filter = your recent inbox) | read |
get_message |
Read one message in full (quoted history trimmed by default) | read |
download_attachment |
Save an inbound attachment to disk (into your download directory) | read |
create_draft |
Compose a new email, saved to Drafts — never sends | write |
send_message |
Send a new email immediately | write |
reply |
Reply to the sender, threaded and quoting the original | write |
reply_all |
Reply to sender + everyone else (never you), threaded | write |
forward |
Forward a message to new recipients, carrying its attachments | write |
Any outgoing tool (create_draft / send_message / reply / reply_all / forward) can:
- send plain text (
body) or a formatted HTML email (html) — HTML messages get an auto-generated plain-text alternative so they render in any client, and replies quote the original as an HTML blockquote; - attach local files by path — absolute, or relative to the working directory, so you can email a
file straight out of the project you're working in (e.g.
attachments: ["./report.pdf"]).
reply / reply_all / forward send immediately unless you pass draft: true, which saves to
Drafts instead.
Set "readOnly": true (or PROTONMAIL_READONLY=1) to register only the three read tools — a
hard guarantee the agent can never compose, send, reply, or forward, whatever the client's approval
settings.
Safety model
The tools that leave the building — send_message, reply, reply_all, forward — are named and
described so your MCP client's per-tool approval is the natural gate; searching, reading, and
downloading never prompt. Prefer drafting: create_draft (or draft: true on a reply/forward) lets
the agent write while you review in Proton and hit send yourself. For an unattended/headless setup,
run readOnly and there's simply nothing that can send. Downloaded attachments are confined to the
configured directory (filenames are basename-sanitised, so a crafted name can't escape it); outgoing
attachments read local files by path, so treat send/reply/forward as the trust boundary they
are.
On your phone
This is a local server, so it's reachable wherever your agent is. Pair the machine with BrainBoxx and you can do the whole thing from your pocket — "check my Proton and tell me what needs dealing with" on the train, replies drafted by the time you're home.
How it works
MCP client (Claude Code / Cursor / …)
│ MCP over stdio
▼
proton-mail-bridge-mcp ──IMAP──► 127.0.0.1:1143 ┐
│ ──SMTP──► 127.0.0.1:1025 ├─ Proton Bridge ──► Proton Mail
└── clean JSON in, tool calls out ┘ (local, TLS, your machine only)
Bridge presents a self-signed cert on localhost (expected); this trusts it by default for
127.0.0.1. Set "allowSelfSigned": false to enforce full verification if you've given Bridge a
trusted cert.
Troubleshooting
Run npx proton-mail-bridge-mcp doctor first — it names the actual failure. Common ones:
no such user— Bridge reports every auth failure this way, including a wrong password. It almost never means the username is genuinely unknown. Re-copy both username and password from Bridge → Mailbox details (copy buttons, don't type), and double-check forl/IandO/0mix-ups.- Reading works but sending fails — your SMTP
Securityis probablySSLwhile you've leftsmtpSecurityatSTARTTLS(or vice-versa). SetimapSecurity/smtpSecurityto exactly what Bridge shows under each column. too many login attempts— Bridge rate-limits repeated logins; it resets after a few minutes of quiet. Stop retrying, wait, try once. (Restarting Bridge also resets it.)- Nothing connects /
connection refused— Bridge isn't running, or is mid-sync. Start it, let the first sync finish (the progress bar must reach 100%), then try. - Just added the account and it won't authenticate — let the initial sync complete, and if it still refuses, quit Bridge fully and reopen it once.
Licence
MIT © 2026 Apexx Apps. Not affiliated with or endorsed by Proton AG.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.