Natural Language Search
Ask Claude to find emails using plain English queries
The Model Context Protocol (MCP) enables AI assistants like Claude to directly access and interact with your MoMail data through a standardized interface.
MCP (Model Context Protocol) is an open standard for connecting AI assistants to data sources. With MoMail’s MCP server, Claude can:
.eml) as base64MoMail implements the MCP protocol using StreamableHTTP transport:
┌─────────────┐ StreamableHTTP ┌─────────────┐│ Claude │ <───────────────────> │ MoMail MCP ││ Desktop │ (HTTP POST) │ Server │└─────────────┘ └─────────────┘ │ ▼ ┌─────────────┐ │ MoMail │ │ Database │ └─────────────┘Natural Language Search
Ask Claude to find emails using plain English queries
Thread Context
Claude can access entire conversation threads for better context
Secure Access
API key authentication with rate limiting
No Data Storage
Claude does not store your email data between sessions
https://momail.io/v1/mcpTransport: StreamableHTTP (POST for JSON-RPC, session headers per MCP spec). Authenticate with Authorization: Bearer mk_… on every request.
MoMail exposes five MCP tools:
| Tool | Purpose |
|---|---|
search_emails | Find emails using natural language or filters |
get_email | Retrieve a specific email by ID |
get_email_thread | Get all emails in a conversation thread |
get_email_raw | Original MIME as base64 (same bytes as REST raw download) |
list_mailboxes | View all your mailboxes and their status |
To use MoMail with Claude Desktop:
MCP requests are subject to rate limits based on your plan:
| Plan | Requests per Minute |
|---|---|
| Free | 10 |
| Pro | 60 |
| Enterprise | 300 |