gmail-mcp
Provides tools to search, read, and list recent emails from Gmail accounts, supporting multiple accounts and unified access.
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., "@gmail-mcplist recent emails from all my accounts"
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.
multi-email-mcp — multi-account mail MCP server
A small local MCP server (stdio) that gives Claude unified read-only access to any number of email accounts at once — Gmail and Microsoft 365 — each authenticating independently, all exposed through one connection.
Setting this up for the first time? Start here → CLIENT-ONEPAGER.md — a plain-English walkthrough (install, connect your accounts, done). The rest of this README is the technical reference.
Docs map: CLIENT-ONEPAGER.md (start here) · CLIENT-SETUP.md (per-account steps + IT request templates) · DAILY-BRIEFING.md (automate a daily briefing) · CLIENT-NOTE.md (what it is, in plain terms).
Providers (per account, set in .env)
Provider | Backend | Auth | When |
| IMAP ( | App password | Google accounts that allow app passwords — the 5-minute path |
| Gmail REST API | OAuth, | Google orgs where IT disabled IMAP/app passwords |
| Microsoft Graph | OAuth device-code, | Microsoft 365 / outlook.com accounts |
Why app passwords first? For accounts you control they need no Google Cloud project, no consent screen, no token storage — just 2-Step Verification plus one generated password. The tradeoffs: an app password is a full-access mailbox credential, and hardened orgs disable them — that's what the two OAuth providers are for. Microsoft has no app-password lane at all (basic IMAP auth was retired in 2022–2024), so Outlook accounts always use Graph.
Related MCP server: imap-mcp
Tools
Tool | Params | Returns |
|
| subject, sender, date, snippet per match, labeled by account |
|
| full body + headers + attachment list, including attachment ids |
|
| opens a Microsoft 365 attachment as an embedded read-only resource |
|
| writes the attachment to a folder on disk and returns the path |
|
| newest messages first |
| — | configured account ids + emails + providers |
account: "all" fans out to every account in parallel and merges results
newest-first; a failing account comes back as an errors entry instead of
failing the call. Result shape is identical across providers.
Reading attachments
For a Microsoft 365 message, call read_message first, then pass the returned
message id, attachment id, and account to read_attachment. Text attachments
are returned as text; other files are returned as MCP embedded resources.
PDFs and images are the primary binary targets; whether Claude can interpret
other formats depends on the Claude client. The tool uses only
Microsoft Graph Mail.Read, so opening an attachment does not grant send,
delete, or modify access. Binary attachments over 7 MB and text attachments over 1 MB are rejected to protect the
model context. Gmail attachment retrieval is not implemented yet.
Saving attachments to a folder
read_attachment opens a file in the conversation; save_attachment writes
it to disk and returns the path. Use the second when the user wants the file
itself. Both stay inside delegated Mail.Read and neither changes the mailbox.
Set MAIL_ATTACHMENT_DIR to the save root (defaults to ~/Downloads). Point
it at a locally-synced Drive folder and saved files land in the Drive with no
Drive API involved. The optional subfolder argument organises below that root
and is resolved and bounds-checked, so a caller cannot write outside it, and an
existing file is never overwritten (a numbered suffix is added instead).
Because saved bytes never enter the conversation, saving is not bound by the
7 MB inline-read cap. Its own ceiling is MAIL_MAX_ATTACHMENT_SAVE_MB
(default 50), which is what makes large scanned contracts workable.
Draft tools (write-enabled Outlook accounts only)
Registered only when an account sets MAIL_<ID>_WRITE=true, which is also the
only case where Mail.ReadWrite is requested instead of Mail.Read. A
read-only setup exposes a read-only tool surface.
Tool | Params | Returns |
|
| threaded reply draft in Drafts |
|
| forward draft in Drafts, original attachments carried over, plus the list of files that rode along |
|
| fresh draft in Drafts |
create_forward_draft is the supported way to get a file out of the mailbox to
someone else: Microsoft Graph's createForward copies the attachments onto the
draft server-side, so nothing is downloaded and re-uploaded.
There is no send path. Mail.Send is never requested and no tool sends.
Every draft lands in Drafts for a human to review and send from Outlook.
Setup
npm installcp .env.example .env, list your accounts (see comments in the file)Per account: paste an app password, or
npm run auth <id>for the OAuth providers (one-time interactive sign-in; tokens cached intokens/, git-ignored). Step-by-step per lane: CLIENT-SETUP.md — including the IT request templates for locked-down orgs.npm run check— verifies every account end-to-end and prints counts.
Adding an account
Append an id to MAIL_ACCOUNTS, add its MAIL_<ID>_* vars, auth if OAuth.
No code changes.
Wiring into Claude
Claude Code:
claude mcp add --scope user mail -- node /path/to/multi-email-mcp/src/server.jsClaude Desktop (claude_desktop_config.json):
{ "mcpServers": { "mail": { "command": "node", "args": ["/path/to/multi-email-mcp/src/server.js"] } } }.env and tokens/ are resolved relative to this folder, so launch cwd
doesn't matter.
Security notes
.envandtokens/are git-ignored; nothing secret is ever committed.Read-only by construction: IMAP mailboxes open with a read-only lock, and the OAuth scopes requested (
gmail.readonly,Mail.Read) cannot send, modify, or delete even if the code tried.The MCP server is headless — it never opens an interactive auth flow; if a token is missing or revoked it returns an error telling you to run
npm run auth <id>.Revocation per lane is documented in CLIENT-SETUP.md.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
An MCP server that provides read access to your cloud storage providers, bank accounts and more.
Read, search, send, organize, draft and schedule email across your inboxes from any MCP client.
Email infrastructure for AI agents — send, receive, search, and reply to email over MCP.
MCP server connecting AI agents to 100+ apps (Gmail, Slack, Notion, GitHub) via one-click OAuth.
Related MCP Servers
- AlicenseNot gradedqualityCmaintenanceA secure MCP server that enables Claude to read, search, send, reply, forward, and manage Gmail messages and labels through natural language commands.2151MIT
- AlicenseNot gradedqualityCmaintenanceRead-only MCP server for IMAP email access, enabling AI agents to read, search, and monitor email without sending or deleting messages.77MIT
- AlicenseNot gradedqualityCmaintenanceA read-only, multi-account Gmail MCP server for Claude Code that lets Claude search threads, read messages, and list labels across authorized Gmail accounts.205MIT
- AlicenseNot gradedqualityBmaintenanceAn MCP server that gives Claude access to plain IMAP mailboxes, enabling reading, searching, moving, and forwarding emails with safety controls configured via config files.MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/oliverkoast/multi-email-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server