Install
$ agentstack add mcp-rumblingb-email-agent-mcp ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
1|# Email Agent MCP Server
[](https://smithery.ai/servers/vishar-rumbling/email-agent-mcp)
An MCP (Model Context Protocol) server that gives AI agents email access via IMAP and SMTP. Works with Gmail, Outlook, Yahoo, and any standard email provider that supports app passwords.
Features
| Tool | Description | |------|-------------| | email_search(query, max_results) | Search emails by sender, subject, content (Gmail-style query syntax) | | email_read(message_id) | Read full email content with attachment metadata | | email_send(to, subject, body, cc?) | Send emails via SMTP with optional CC | | email_list_inbox(max_results, label?) | List recent emails from inbox or any label/folder | | email_draft(to, subject, body) | Save an email as a draft |
Quick Start
1. Install
pip install -r requirements.txt
2. Configure
Set these environment variables:
export EMAIL_ADDRESS="your.email@gmail.com"
export EMAIL_PASSWORD="your-app-password"
For custom SMTP/IMAP (optional):
export EMAIL_SMTP_SERVER="smtp.gmail.com" # default
export EMAIL_SMTP_PORT="587" # default
export EMAIL_IMAP_SERVER="imap.gmail.com" # default
export EMAIL_IMAP_PORT="993" # default
3. Run
python server.py
Gmail Setup (App Password)
Gmail requires an App Password — your regular password won't work.
- Go to Google Account Security
- Enable 2-Step Verification (required for app passwords)
- Go to App passwords (search in Google Account settings)
- Select Mail and your device, then Generate
- Copy the 16-character password — use this as
EMAIL_PASSWORD
> Note: If you have a Google Workspace account, your admin must enable IMAP access.
Other Providers
| Provider | SMTP Server | SMTP Port | IMAP Server | IMAP Port | |----------|-------------|-----------|-------------|-----------| | Gmail | smtp.gmail.com | 587 | imap.gmail.com | 993 | | Outlook/Hotmail | smtp.office365.com | 587 | outlook.office365.com | 993 | | Yahoo Mail | smtp.mail.yahoo.com | 587 | imap.mail.yahoo.com | 993 | | GMX | smtp.gmx.com | 587 | imap.gmx.com | 993 | | Zoho | smtp.zoho.com | 587 | imap.zoho.com | 993 |
Search Query Syntax
Uses Gmail-style search format:
"from:alice@example.com subject:invoice after:2024/01/01"
"has:attachment is:unread"
"from:someone@example.com"
"subject:meeting"
Supported keywords: from:, subject:, to:, before:, after:, has:attachment, is:unread, is:read
License
MIT
Pricing
$19/month — Subscribe on Stripe
Built for AI agents. No OAuth required — just an email and app password.
Source & license
This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: Rumblingb
- Source: Rumblingb/email-agent-mcp
- License: MIT
- Homepage: https://rumblingb.github.io/email-agent-mcp/
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.