@ronamosa/protonmail-pro-mcp
v2.1.0
Published
ProtonMail MCP server for email management via Proton Bridge. Supports SMTP sending, IMAP reading, and folder management through the Model Context Protocol.
Maintainers
Readme
ProtonMail MCP Server
Email management for AI agents through ProtonMail and Proton Bridge
Send, read, search, and organize emails from Claude Code, Claude Desktop, Cursor, or any MCP-compatible client.
Quick start
Install from npm (recommended)
npx @ronamosa/protonmail-pro-mcpOr install globally:
npm install -g @ronamosa/protonmail-pro-mcp
protonmail-pro-mcpInstall from source
git clone https://github.com/ronamosa/protonmail-pro-mcp.git
cd protonmail-pro-mcp
npm install
npm linkVerify the install:
which protonmail-pro-mcpPrerequisites -- Node.js >= 18 and Proton Bridge running locally.
Configuration
cp .env.example .env # then fill in your credentials| Variable | Required | Default | Description |
|:---------|:--------:|:-------:|:------------|
| PROTONMAIL_USERNAME | Yes | -- | Your ProtonMail email address |
| PROTONMAIL_PASSWORD | Yes | -- | Proton Bridge password (not your login password) |
| PROTONMAIL_SMTP_HOST | | smtp.protonmail.ch | SMTP server host |
| PROTONMAIL_SMTP_PORT | | 587 | SMTP server port |
| PROTONMAIL_IMAP_HOST | | 127.0.0.1 | IMAP host (Proton Bridge) |
| PROTONMAIL_IMAP_PORT | | 1143 | IMAP port (Proton Bridge) |
| PROTONMAIL_IMAP_TLS | | false | Enable TLS for IMAP |
| PORT | | 3000 | HTTP transport port |
| DEBUG | | false | Enable debug logging |
Security --
PROTONMAIL_PASSWORDis the bridge-generated password, not your ProtonMail login. Never commit.envfiles.
Local development (Cursor)
To test this repo's built output instead of the published npm package:
npm run build
cp .cursor/mcp.json.example .cursor/mcp.json # add your Bridge credentialsRestart Cursor MCP (Settings → MCP → reload). The local server runs node dist/index.js from this workspace.
Manual attachment test (Bridge required)
Sends a self-addressed email with two attachments named dupe.txt, then verifies ambiguous lookup and index-based retrieval:
cp .env.example .env # if you have not already
npm run build
npm run test:attachments:manualThe script leaves the test email in INBOX so you can also exercise get_email_by_id and get_attachment from Cursor.
Usage
Add to ~/.claude.json under mcpServers, or run claude mcp add:
{
"mcpServers": {
"protonmail": {
"type": "stdio",
"command": "npx",
"args": ["@ronamosa/protonmail-pro-mcp"],
"env": {
"PROTONMAIL_USERNAME": "[email protected]",
"PROTONMAIL_PASSWORD": "your-bridge-password"
}
}
}
}Add to ~/.config/claude/claude_desktop_config.json:
{
"mcpServers": {
"protonmail": {
"command": "npx",
"args": ["@ronamosa/protonmail-pro-mcp"],
"env": {
"PROTONMAIL_USERNAME": "[email protected]",
"PROTONMAIL_PASSWORD": "your-bridge-password"
}
}
}
}Add to .cursor/mcp.json in your project:
{
"mcpServers": {
"protonmail": {
"command": "npx",
"args": ["@ronamosa/protonmail-pro-mcp"],
"env": {
"PROTONMAIL_USERNAME": "[email protected]",
"PROTONMAIL_PASSWORD": "your-bridge-password"
}
}
}
}protonmail-pro-mcp --transport http --port 3000Endpoints: POST /mcp, GET /mcp, DELETE /mcp (Streamable HTTP). Health check at GET /health.
Tools
| | Tool | Description |
|:--|:-----|:------------|
| Send | send_email | Send with to/cc/bcc, HTML, priority, reply-to, attachments |
| | send_test_email | Quick test email to verify SMTP |
| Read | get_emails | Fetch from a folder with pagination |
| | get_email_by_id | Full email with body, headers, and attachment metadata (includes index) |
| | get_attachment | Download an attachment by emailId and filename; pass index when filenames duplicate |
| | search_emails | Filter by from, to, subject, date, flags, attachments |
| Drafts | create_draft | Create a new draft in the Drafts folder |
| | update_draft | Replace an existing draft with new content |
| | delete_draft | Delete a draft |
| | send_draft | Send a draft via SMTP and remove it from Drafts |
| Act | mark_email_read | Mark read or unread |
| | star_email | Star or unstar |
| | move_email | Move between folders |
| | delete_email | Soft-delete to Trash; permanent only if already in Trash |
| Folders | get_folders | List all folders with message counts |
| | sync_folders | Force-refresh folder list |
| System | get_connection_status | SMTP and IMAP connection health |
Architecture
src/
index.ts Entry point, transport selection, graceful shutdown
server.ts McpServer setup, tool registration
config.ts Zod-validated environment configuration
logger.ts Structured stderr logger with credential redaction
types.ts Shared TypeScript interfaces
services/
smtp.ts nodemailer wrapper (lazy connection)
imap.ts imapflow + mailparser wrapper (lazy connection, auto-reconnect)
tools/
sending.ts send_email, send_test_email
reading.ts get_emails, get_email_by_id, search_emails
drafts.ts create_draft, update_draft, delete_draft, send_draft
actions.ts mark_email_read, star_email, move_email, delete_email
folders.ts get_folders, sync_folders
system.ts get_connection_status- McpServer API (SDK v1.29+) with Zod input validation on every tool
- Tool annotations (
readOnlyHint,destructiveHint,openWorldHint) per MCP spec - Dual transport -- stdio for local use, Streamable HTTP for remote deployment
- Lazy connections -- SMTP and IMAP connect on first use, not at startup
- Credential redaction -- passwords scrubbed from all log output
- Soft delete --
delete_emailmoves to Trash first; permanent delete only from Trash
Development
npm run dev # Watch mode with tsx
npm run typecheck # Type checking without emit
npm run lint # ESLint
npm run format # Prettier
npm test # Run tests
npm run build # Rebuild (symlink picks up changes automatically)Credits
Originally scaffolded from anyrxo/protonmail-pro-mcp. Completely rewritten with modern MCP SDK, Zod validation, dual transport, and full tool implementations.
License
MIT
