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

email-mcp-server

v2.0.1

Published

Universal Email MCP Server — works with Gmail, Outlook, Yahoo, Zoho, and any IMAP provider. Read, send, reply, draft, manage, cold email, auto-triage, cleanup, follow-ups.

Readme

Email MCP Server

Universal email integration for AI assistants. Works with Gmail, Outlook, Yahoo, Zoho, iCloud, AOL, and any IMAP email provider.

Read, send, reply, draft, manage, clean up, run cold email campaigns, auto-triage, and track follow-ups — all through the Model Context Protocol.

Compatible with Claude Desktop, Cursor, Hermes Agent, Windsurf, and any MCP client.


Why This Exists

Every email MCP out there only works with Gmail via Google Cloud OAuth. This one:

  • Works with ANY email provider — Gmail, Outlook, Yahoo, Zoho, iCloud, AOL, custom domains
  • No Google Cloud project needed — uses IMAP + App Passwords (free, 30 seconds)
  • 18 tools — full email management + AI-powered automation
  • Zero data leaves your machine — everything runs locally

Supported Providers (Auto-Detected)

| Provider | IMAP | SMTP | |----------|------|------| | Gmail / Google Workspace | imap.gmail.com:993 | smtp.gmail.com:465 | | Outlook / Hotmail / Live | outlook.office365.com:993 | smtp.office365.com:587 | | Yahoo Mail | imap.mail.yahoo.com:993 | smtp.mail.yahoo.com:465 | | Zoho Mail (.com, .in, .eu, .com.au, .jp) | imap.zoho.com:993 | smtp.zoho.com:465 | | iCloud / Me.com | imap.mail.me.com:993 | smtp.mail.me.com:587 | | AOL Mail | imap.aol.com:993 | smtp.aol.com:465 | | Any custom IMAP | Set IMAP_HOST env var | Set SMTP_HOST env var |

Just enter your email — the server auto-detects the provider.


18 Tools

Read (5)

| Tool | Description | |------|-------------| | email_search | Search emails with query syntax | | email_read | Read full email by ID | | email_read_thread | Read entire conversation | | email_inbox | Quick inbox view (unread filter) | | email_profile | Account info |

Send (5)

| Tool | Description | |------|-------------| | email_send | Send email (HTML, CC, BCC, threading) | | email_reply | Reply to email (auto-sets headers) | | email_draft | Create draft | | email_send_draft | Send existing draft | | email_list_drafts | List all drafts |

Manage (8)

| Tool | Description | |------|-------------| | email_labels | List all folders/labels | | email_create_label | Create new folder | | email_archive | Archive messages | | email_trash | Move to trash | | email_delete | Permanent delete | | email_mark_read / email_mark_unread | Toggle read status | | email_star / email_unstar | Toggle star/flag | | email_add_label / email_remove_label | Move between folders |

Automation (7) — The Premium Features

| Tool | Description | |------|-------------| | email_digest | Morning summary grouped by sender | | email_suggest_reply | Prepare AI reply context | | email_triage | Classify unread by priority | | email_cleanup | Archive old/newsletter/social (dry-run) | | email_cold_campaign | Personalized bulk emails with placeholders | | email_follow_up | Find sent emails with no reply | | email_contacts | Extract contacts from email history |


Quick Start

1. Generate an App Password

Gmail:

  1. Go to https://myaccount.google.com/apppasswords
  2. Select app → Generate → Copy the 16-char password

Outlook/Hotmail:

  1. Go to https://account.live.com/proofs/AppPassword
  2. Create new app password → Copy

Yahoo:

  1. Go to https://login.yahoo.com/account/security
  2. Generate app password for "Mail"

Zoho:

  1. Go to https://accounts.zoho.com/home#security/app-passwords
  2. Generate new app password → Copy

2. Install & Run

cd email-mcp-server
npm install
npm run build

# Set credentials
export EMAIL_ADDRESS="[email protected]"
export EMAIL_PASSWORD="your-app-password"

# Run
node build/index.js

3. Connect to Your AI

Claude Desktop (claude_desktop_config.json):

{
  "mcpServers": {
    "email": {
      "command": "node",
      "args": ["C:/path/to/email-mcp-server/build/index.js"],
      "env": {
        "EMAIL_ADDRESS": "[email protected]",
        "EMAIL_PASSWORD": "your-app-password"
      }
    }
  }
}

Cursor (.cursor/mcp.json): Same structure as above.

Hermes Agent:

hermes mcp add email --command node --args C:/path/to/email-mcp-server/build/index.js

Usage Examples

"Check my inbox and summarize the important emails" "Read the email from [email protected] and draft a reply" "Clean up my inbox — archive all newsletters older than 7 days" "Send cold emails to these 5 prospects about web development" "Show me emails I sent that haven't gotten a reply" "Triage my unread emails by priority"


Cold Email Campaign

{
  "recipients": [
    { "email": "[email protected]", "name": "John", "company": "Acme Corp" },
    { "email": "[email protected]", "name": "Sarah", "company": "StartupIO" }
  ],
  "subject_template": "Quick question about {{company}}'s tech stack",
  "body_template": "<p>Hi {{name}},</p><p>I noticed {{company}} is growing fast...</p>",
  "create_drafts": true
}

Always use create_drafts: true first to review before sending.


Custom IMAP/SMTP

For providers not in the auto-detect list:

export IMAP_HOST="mail.yourprovider.com"
export IMAP_PORT="993"
export SMTP_HOST="smtp.yourprovider.com"
export SMTP_PORT="465"

Security

  • Credentials in environment variables only (never written to disk)
  • All processing local — no external API calls
  • App Passwords revocable anytime from provider settings

License

MIT — Use freely, modify, sell as part of your services.