IMAP Mail MCP
Allows reading and searching emails from a Proton Mail account via the Proton Bridge IMAP interface.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@IMAP Mail MCPfind unread billing emails"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
IMAP Mail MCP
IMAP Mail MCP is an MCP (Model Context Protocol) server that lets LLM clients read email through IMAP tools.
It is designed for:
local AI workflows (Cursor, ollmcp, other MCP hosts)
mailbox exploration/search/summarization
extension by developers who want to add mail tools
Current implementation is read-only (list/search/fetch/status/thread context/attachment metadata).
What You Get
10 MCP tools for common mail workflows
consistent sorting and cursor pagination support
guardrails for result size and snippet size
deterministic tests plus CI
TypeScript codebase that is easy to extend
Related MCP server: IMAP Email MCP Server
Quick Start
1. Install
git clone https://github.com/FaisalFehad/imap-mail-mcp.git
cd imap-mail-mcp
cp .env.example .env
npm install
npm run build2. Configure .env
Set IMAP credentials in .env:
Variable | Required | Description | Typical Example |
| yes | IMAP host |
|
| yes | IMAP port |
|
| yes |
|
|
| yes | IMAP username |
|
| yes | IMAP password |
|
| no | validate TLS cert chain |
|
| no | max body chars in |
|
| no | global cap for list/search limits |
|
| no | max snippet chars when enabled |
|
Proton Bridge users usually run with IMAP_HOST=127.0.0.1, IMAP_PORT=1143, IMAP_SECURE=false.
3. Run
node dist/index.jsOr via package bin:
npx imap-mail-mcpCompatibility alias still works:
npx proton-bridge-mcpMCP Client Setup
Cursor
Add server config (Settings -> MCP):
{
"mcpServers": {
"imap-mail": {
"command": "node",
"args": ["/absolute/path/to/imap-mail-mcp/dist/index.js"],
"env": {
"IMAP_HOST": "127.0.0.1",
"IMAP_PORT": "1143",
"IMAP_SECURE": "false",
"IMAP_USER": "your@proton.me",
"IMAP_PASS": "your-bridge-password"
}
}
}
}ollmcp
Create
~/.config/ollmcp/mcp-servers/servers.json:
{
"mcpServers": {
"imap-mail": {
"command": "node",
"args": ["/absolute/path/to/imap-mail-mcp/dist/index.js"],
"env": {
"IMAP_HOST": "127.0.0.1",
"IMAP_PORT": "1143",
"IMAP_SECURE": "false",
"IMAP_USER": "your@proton.me",
"IMAP_PASS": "your-bridge-password"
},
"disabled": false
}
}
}Run:
ollmcp -j ~/.config/ollmcp/mcp-servers/servers.jsonIf ollmcp is not in PATH, use ~/.local/bin/ollmcp.
Tool Reference
Use mail_search_advanced as the default search entry point.
Tool | Use For | Notes |
| list mailboxes/folders | start here |
| list messages in one mailbox | supports |
| full message body by UID | returns envelope + body text |
| basic filter search | convenience wrapper |
| keyword/sender/receiver/subject/body/date/sent-date/read-state/message-id | primary search tool |
| counters for one mailbox | messages, unseen, recent, UID metadata |
| unread messages in a mailbox | same pagination/sort options as list/search |
| attachment metadata by UID | no binary download |
| free text query by selected fields | convenience wrapper |
| related messages around a UID | thread continuity for summarization/reply |
Common List/Search Options
Supported by list/search tools:
limit: requested size (clamped byMAIL_MAX_RESULTS)sort:ascordesc(defaultdesc)cursor: opaque cursor for next pageincludeSnippet: include snippet text in envelope resultsreturnPage: return{ items, nextCursor }instead of only array
Envelope result fields are stable:
{
"uid": 123,
"subject": "string",
"from": "comma-separated addresses",
"to": "comma-separated addresses",
"date": "ISO-8601 string",
"messageId": "optional string",
"snippet": "optional string"
}Example Workflows
Find unread billing mail in INBOX
mail_search_advancedwithmailbox=INBOX,keyword=bill,unseen=true,limit=20mail_get_messageon the most relevant UID
Summarize a conversation before drafting a reply
mail_get_thread_contextwith target UID andlimitfetch one or two full messages with
mail_get_messagesummarize using context
Scan a large folder in pages
mail_list_messageswithreturnPage=truepass returned
nextCursorto next call until absent
Developer Guide (Use This Codebase)
Project Layout
src/index.ts MCP server, tool schemas, handlers
src/imap.ts IMAP operations and query behavior
src/query.ts sorting/pagination/cursor/snippet helpers
src/config.ts environment parsing and defaults
tests/*.test.mjs deterministic testsAdd a New Tool
Add schema in
src/index.tstool list.Add handler branch in
src/index.tscall handler.Implement IMAP logic in
src/imap.ts.Add deterministic tests in
tests/.Update this README tool table.
Keep LLM Behavior Predictable
keep envelope field names stable
prefer additive changes (avoid breaking existing tool args)
keep default ordering deterministic
keep limits clamped
avoid expensive full-mailbox scans where possible
Testing
Run deterministic tests (no live mailbox required):
npm testRun live smoke test (requires real IMAP credentials):
node scripts/test-mcp.mjsCI runs:
npm cinpx tsc --noEmitnpm test
Troubleshooting
Error: Command failed no such user (NO)
Usually bad IMAP_USER/IMAP_PASS or temporary server lockout after failed attempts.
Check:
IMAP_USERis your IMAP login identity, not host/IPIMAP_PASSis correct for that IMAP accountfor Proton Bridge, use the Bridge-generated password
wait a few minutes after repeated failed login attempts
TLS errors (wrong version number, ssl3_get_record)
You are likely using TLS against a plain IMAP port.
Fix:
set
IMAP_SECURE=falsefor local plain IMAP endpoints (common with Bridge)verify port matches secure/non-secure mode
Self-signed cert errors
If your IMAP endpoint uses self-signed certs:
set
IMAP_TLS_REJECT_UNAUTHORIZED=false
ollmcp: command not found
Install via pip/pipx/uvx, or run with full path:
~/.local/bin/ollmcp -j ~/.config/ollmcp/mcp-servers/servers.jsonSecurity
never commit
.envor credential fileskeep IMAP credentials in MCP client env or local
.envthis implementation does not send or modify mail
License
MIT
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/FaisalFehad/imap-mail-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server