npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@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.

Readme

ProtonMail MCP Server

Email management for AI agents through ProtonMail and Proton Bridge

CI npm MCP SDK TypeScript License: MIT Node.js

Send, read, search, and organize emails from Claude Code, Claude Desktop, Cursor, or any MCP-compatible client.

Overview


Quick start

Install from npm (recommended)

npx @ronamosa/protonmail-pro-mcp

Or install globally:

npm install -g @ronamosa/protonmail-pro-mcp
protonmail-pro-mcp

Install from source

git clone https://github.com/ronamosa/protonmail-pro-mcp.git
cd protonmail-pro-mcp
npm install
npm link

Verify the install:

which protonmail-pro-mcp

Prerequisites -- 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_PASSWORD is the bridge-generated password, not your ProtonMail login. Never commit .env files.

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 credentials

Restart 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:manual

The 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 3000

Endpoints: 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

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_email moves 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