Server data from the Official MCP Registry
Read Proton Mail, extract bounded attachment text, and create explicitly confirmed drafts.
About
Read Proton Mail, extract bounded attachment text, and create explicitly confirmed drafts.
Security Report
Valid MCP server (0 strong, 3 medium validity signals). 5 known CVEs in dependencies Package registry verified. Imported from the Official MCP Registry.
5 files analyzed · 6 issues found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
Permissions Required
This plugin requests these system permissions. Most are normal for its category.
What You'll Need
Set these up before or after installing:
Environment variable: PROTON_BRIDGE_USER
Environment variable: PROTON_IMAP_PORT
How to Install
Add this to your MCP configuration file:
{
"mcpServers": {
"io-github-fbossiere-proton-safe-mcp": {
"env": {
"PROTON_IMAP_PORT": "your-proton-imap-port-here",
"PROTON_BRIDGE_USER": "your-proton-bridge-user-here"
},
"args": [
"proton-safe-mcp"
],
"command": "uvx"
}
}
}Documentation
View on GitHubFrom the project's GitHub README.
Proton Safe MCP
A client-agnostic FastMCP server for Proton Mail through the official Proton Mail Bridge. It can read and search mail and create drafts with attachments. It deliberately cannot send email — you review every draft in Proton Mail and press Send yourself.
The server runs locally over STDIO for any MCP-compatible client (Claude Desktop, Claude Code, or anything else that speaks MCP). Received PDF, TXT, and CSV attachments can be inspected through bounded text extraction without exposing their raw bytes. Outgoing attachments are uploaded as bounded base64 chunks, so the server never receives or reads a client filesystem path.
Read the full documentation for setup, configuration, tool inputs, security boundaries, and troubleshooting.
Why "safe"?
Email is attacker-controlled input. Any sender can put adversarial instructions in a message body, and an AI agent that reads mail and holds write-capable tools is one prompt injection away from doing something you did not ask for. This project limits the blast radius by construction:
- No send. There is no SMTP client and no
send_messagetool in the codebase — a test asserts it. - No delete, no move, and no raw received-attachment download tool.
- Human in the loop. Draft creation requires explicit confirmation of the exact content in the conversation, and Proton Mail still requires manual review and sending.
- No filesystem access for clients. Attachment bytes are streamed in chunks with declared size and SHA-256 verification; paths are rejected.
- Loopback only. STDIO transport, no listening socket, and the Bridge host is hard-coded to
127.0.0.1.
These controls reduce risk but do not make email trusted. Never expose unrelated write-capable tools in the same unattended agent workflow.
Architecture

Security properties
- STDIO only: the server opens no listening network socket.
- Proton Bridge host is hard-coded to
127.0.0.1(PROTON_BRIDGE_HOSTis intentionally unsupported). - No SMTP client, send tool, delete tool, move tool, or raw received-attachment download tool.
- Message and attachment reads use
BODY.PEEK; attachment inspection returns bounded extracted text, metadata, and a SHA-256 digest, never raw bytes or files. - Attachment input is chunked base64 with declared size and SHA-256 verification.
- Only PDF, DOCX, XLSX, PPTX, TXT, CSV, PNG, and JPEG uploads are accepted.
- Attachment tokens are random, short-lived, single-use, and reverified before draft creation.
- Draft creation requires an explicit client assertion that the user confirmed the exact recipients, subject, body, and attachments in the conversation.
- The Bridge-generated IMAP password is stored in the operating-system keyring.
- Draft bodies are stored as plain text plus a server-generated HTML alternative that HTML-escapes the confirmed body, so quoted markup can never be rendered.
- Recipient, subject, and folder inputs are validated against header/criteria injection.
- State files are private to the Unix account (
0700directories,0600files,O_NOFOLLOW).
Requirements
- Linux with the official Proton Mail Bridge installed, signed in, and running (developed and tested on Ubuntu).
- A Proton plan that supports Bridge.
- Python 3.11 or newer.
uv.- A working Secret Service keyring (
gnome-keyringor compatible).
Installation
Install the reviewed release from PyPI with uv:
uv tool install proton-safe-mcp==2.0.0
For development from source instead:
git clone https://github.com/fbossiere/proton-safe-mcp.git
cd proton-safe-mcp
uv sync --extra dev
Set only the Proton address and Bridge IMAP port in the MCP process environment:
export PROTON_BRIDGE_USER="your-address@proton.me"
export PROTON_IMAP_PORT="1143"
Store the Bridge-generated IMAP password (shown in the Bridge UI), not your Proton account password:
proton-safe-mcp setup
The value shown by Bridge is installation-specific and works only against the local Bridge.
Register with an MCP client
Configure a local STDIO server with these logical fields. Use command -v proton-safe-mcp
to obtain the absolute command path when your client does not inherit your shell PATH:
{
"name": "proton-safe",
"transport": "stdio",
"command": "/absolute/path/to/proton-safe-mcp",
"args": ["serve"],
"env": {
"PROTON_BRIDGE_USER": "your-address@proton.me",
"PROTON_IMAP_PORT": "1143"
}
}
Do not put PROTON_BRIDGE_PASSWORD in the client configuration. The server reads it from the OS keyring established by setup.
Copy-paste instructions are available for Claude Code, Cursor, and VS Code.
AI coding agents can follow the safety-constrained llms-install.md guide.
Verify the complete local setup without printing credentials, addresses, or mailbox data:
proton-safe-mcp doctor
OpenAI plugin
The repository includes a private, local-first Proton Safe plugin for ChatGPT and Codex. It packages safety-focused mail review and draft workflows with the same restricted MCP server:
- ChatGPT desktop and Codex can launch the bundled STDIO configuration directly on the Bridge machine, with no tunnel or dedicated server;
- direct MCP registration remains available when the packaged workflow skills are not needed;
- ChatGPT web or a client on another machine can optionally reach the Bridge host through OpenAI Secure MCP Tunnel without an inbound port;
- a remote deployment still keeps
proton-safe-mcpand Proton Mail Bridge together, with IMAP fixed to127.0.0.1.
See the OpenAI plugin guide for local ChatGPT desktop/Codex installation, direct MCP registration, and the optional remote tunnel.
Plugin installed but no Proton tools? The bundled MCP configuration forwards
PROTON_BRIDGE_USERandPROTON_IMAP_PORTfrom the environment that started Codex; it does not define their values. On Ubuntu, a correct~/.config/environment.d/*.conffile can still require a user-manager reload, while GNOME and already-running terminals can keep their earlier environment. If a menu relaunch still has no tools, start ChatGPT once from a terminal that has loaded the file. That terminal launch is a diagnostic, not a requirement for every start; the troubleshooting guide also provides a persistent per-user menu launcher. Follow the privacy-safe Ubuntu recovery procedure or the FAQ before reinstalling anything.
Help test the onboarding. Linux and Proton Mail Bridge users can run the 10-minute external test and submit privacy-safe installation feedback.
Available MCP tools
| Category | Tool | Notes |
|---|---|---|
| Read-only mail | mailbox_status | Bridge connectivity + INBOX counts |
list_folders | ||
list_messages | Never marks messages as read | |
search_messages | Injection-safe IMAP TEXT search | |
read_message | Bounded plain text; no attachment bytes | |
extract_attachment_text | Bounded PDF/TXT/CSV text; no raw bytes or files | |
| Attachment staging | begin_attachment_upload | Declares filename, type, size, SHA-256 |
upload_attachment_chunk | Ordered base64 chunks | |
finish_attachment_upload | Verifies hash, returns single-use token | |
discard_attachment | ||
| Drafts | create_confirmed_draft | Requires exact conversational confirmation |
There is deliberately no send_message tool.
Attachment and draft workflow
The MCP client only needs the ability to obtain the bytes of a file and call tools. There is no dependency on a particular client, service, or local directory.
- Calculate the exact byte length and SHA-256 of the file.
- Call
begin_attachment_upload(filename, content_type, size_bytes, sha256_hex). - Base64-encode consecutive binary chunks no larger than the returned
max_chunk_bytes. - Call
upload_attachment_chunk(upload_id, chunk_index, data_base64)for indexes0, 1, 2…. - Call
finish_attachment_upload(upload_id)and retain the returnedattachment_token. - Present the exact recipients, subject, complete body, and attachment list to the user.
- After explicit confirmation in the conversation, call
create_confirmed_draft(..., user_confirmed=true, attachment_tokens=[token]). - Open Proton Mail, review the draft, and send it manually.
Step 8 is the human gate, and it is the only one that matters: the server has no SMTP implementation, so a draft it creates cannot leave your account until you press Send in Proton Mail. Uploaded attachments expire after 30 minutes if no draft consumes them.
Local administration
proton-safe-mcp doctor # check the local setup without printing private data
proton-safe-mcp setup # store the Bridge-generated IMAP password in the OS keyring
proton-safe-mcp serve # run the MCP server over STDIO
Configuration reference
| Variable | Default | Purpose |
|---|---|---|
PROTON_BRIDGE_USER | required | Proton address configured in Bridge |
PROTON_BRIDGE_ALIASES | empty | Comma-separated additional From addresses a draft may use |
PROTON_IMAP_PORT | 1143 | Local Bridge IMAP port |
PROTON_MCP_STATE_DIR | ~/.local/state/proton-safe-mcp | Private attachment staging state |
PROTON_MCP_MAX_ATTACHMENT_BYTES | 20971520 | Per-file maximum, capped at 25 MiB |
PROTON_MCP_MAX_RECEIVED_ATTACHMENT_BYTES | 10485760 | Received-file extraction maximum, capped at 25 MiB |
PROTON_MCP_MAX_CHUNK_BYTES | 393216 | Decoded chunk maximum, capped at 1 MiB |
PROTON_MCP_UPLOAD_TTL_SECONDS | 1800 | Attachment staging lifetime |
PROTON_MCP_MAX_BODY_CHARS | 100000 | Maximum outgoing draft body length |
PROTON_BRIDGE_HOST is intentionally unsupported.
For isolated containers without a Secret Service keyring, PROTON_BRIDGE_PASSWORD may contain
the Bridge-generated IMAP password. Avoid this fallback in desktop MCP client configuration:
environment values may be visible to the client process or its diagnostics.
Development
uv sync --extra dev
uv run pytest --cov # tests with coverage
uv run ruff check . # lint
uv run ruff format . # format
uv run mypy # strict type checking
Proton Bridge is not needed for development: the test suite fakes the IMAP layer. Tests cover path rejection, MIME restrictions, received-attachment size and format rejection, bounded PDF/text extraction, ordered chunks, size/hash verification, token consumption, header injection, draft confirmation, recipient and attachment bounds, and HTML-to-text sanitization.
See CONTRIBUTING.md for the design rules that reviews enforce.
Threat-model limitations
Read this before relying on the server in an autonomous workflow:
- A model necessarily sees any mail it reads and any attachment it creates or uploads.
- Extracted attachment text is attacker-controlled and may contain prompt injection. The server bounds the returned text but does not make it trustworthy or perform OCR or malware scanning.
- Uploaded attachment bytes are stored temporarily in files readable only by the Unix account. Use full-disk encryption.
- The server cannot inspect the surrounding conversation.
user_confirmed: trueis a client assertion, so the confirmation step depends on the client honoring the rule. It reduces accidents; it is not a boundary against a client under an attacker's influence. - A draft this server creates is inert until you send it, but it can still be crafted to look like something you wrote. Read drafts in Proton Mail before sending, especially recipients.
- Secure MCP Tunnel keeps the server off the public internet, but mail content returned to an OpenAI product still crosses the local Bridge boundary and is processed by that product.
- Tool annotations and conversational-confirmation instructions are client guidance, not authorization controls. What the server enforces is input validation and the absence of any send, delete, or move capability.
- Proton Bridge's self-signed TLS certificate is not verified. This is acceptable here only because the target host is unchangeably
127.0.0.1.
Security
To report a vulnerability, use GitHub private vulnerability reporting — never a public issue. See SECURITY.md.
License
MIT © 2026 Francois Bossiere.
This project is not affiliated with or endorsed by Proton AG. "Proton Mail" and "Proton Mail Bridge" are trademarks of Proton AG.
Reviews
No reviews yet
Be the first to review this server!
More Developer Tools MCP Servers
Fetch
Freeby Modelcontextprotocol · Developer Tools
Web content fetching and conversion for efficient LLM usage
Git
Freeby Modelcontextprotocol · Developer Tools
Read, search, and manipulate Git repositories programmatically
Toleno
Freeby Toleno · Developer Tools
Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.
mcp-creator-python
Freeby mcp-marketplace · Developer Tools
Create, build, and publish Python MCP servers to PyPI — conversationally.
MCP Marketplace
Freeby mcp-marketplace · Developer Tools
Search and install MCP servers from inside your AI client.
MarkItDown
Freeby Microsoft · Content & Media
Convert files (PDF, Word, Excel, images, audio) to Markdown for LLM consumption
