A local-first MCP server for managing multiple Gmail and Microsoft 365 email accounts through a single unified interface. All operations run locally with encrypted token storage — no cloud token storage.
list_accounts: View all configured local email account aliases (e.g.,work,personal) without exposing secrets or tokens.search_mail: Search one or all accounts simultaneously using provider-specific syntax (Gmail search or Microsoft Graph). Optional filtering by account alias or provider (gmail/m365), with up to 25 results per account.get_thread: Fetch a full Gmail thread bythreadIdor a Microsoft 365 conversation byconversationId, using IDs returned from search results.create_draft: Compose and save a draft email with support forto,cc,bcc,subject,body(plain text or HTML), and reply threading viainReplyTo.send_draft: Send a previously created draft bydraftId. Requires explicitconfirm: "SEND"to prevent accidental sends.send_mail: Send a new email immediately with full recipient and body support. Also requiresconfirm: "SEND"as a safety guard.
Notable constraints: No tools for deleting, archiving, or labeling mail are available.
Allows reading, searching, drafting, and sending emails from Gmail accounts, supporting multiple accounts via local aliases.
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., "@multi-mail-mcpSearch all my mail accounts for 'invoice from Stripe' and show the newest 10 hits."
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-mail-mcp
Local-first MCP server for agents that need to work across multiple Gmail and Microsoft 365 accounts without cloud token storage.
This is an alpha built for the exact pain in the thread: work Gmail, personal Gmail, side-project Gmail, and Microsoft 365 should all be available to an agent by alias.
Beta site: https://multi-mail-mcp.netlify.app
What It Does
Stores multiple accounts as local aliases:
work,personal,side,m365, etc.Encrypts OAuth profiles and tokens on the machine.
Exposes one MCP server over stdio.
Supports Gmail and Microsoft 365 / Outlook.
Searches one account or all accounts.
Fetches Gmail threads or Microsoft 365 conversations.
Creates drafts.
Sends drafts or new emails only when the tool call includes
confirm: "SEND".
Related MCP server: Agent Email
Tools
list_accountssearch_mailget_threadcreate_draftsend_draftsend_mail
Install
npm install -g https://github.com/claygeo/multi-mail-mcp/archive/refs/heads/main.tar.gz
mailmcp initAdd Gmail
In Google Cloud Console:
Enable the Gmail API.
Configure the OAuth consent screen. While the app is in testing, add the Gmail account as a test user.
Create an OAuth client with application type
Desktop app.
Then run:
mailmcp add-gmail `
--alias personal `
--credentials-json "C:\Users\you\Downloads\client_secret_....apps.googleusercontent.com.json"The local callback is http://127.0.0.1:41577.
Default Gmail scopes:
https://www.googleapis.com/auth/gmail.readonlyhttps://www.googleapis.com/auth/gmail.compose
That means read/search plus draft/send support. There is no delete/archive/label mutation tool in this alpha.
Add Microsoft 365
In Microsoft Entra:
Register an app.
Add a
Mobile and desktop applicationsplatform redirect URI:http://127.0.0.1:41578/oauth/callback.Enable public client/native flows for the app registration.
Then run:
mailmcp add-m365 `
--alias work `
--client-id "<MICROSOFT_CLIENT_ID>" `
--tenant commonDefault Microsoft scopes:
offline_accessUser.ReadMail.ReadMail.ReadWriteMail.Send
Some work/school tenants require admin consent before delegated mail scopes work.
Verify The Full Loop
After at least one account is added:
mailmcp list
mailmcp verify --account personal --max-results 3
mailmcp verify --account personal --max-results 3 --draft-to you@example.comverify checks the local vault, confirms the send guard refuses sends without confirm: "SEND", searches real mail, fetches the first returned thread/conversation, and optionally creates an unsent draft. It does not send email.
If you added both providers:
mailmcp verify --provider gmail --max-results 3
mailmcp verify --provider m365 --max-results 3To prove the MCP layer itself is responding:
npx @modelcontextprotocol/inspector --cli mailmcp server --method tools/list
npx @modelcontextprotocol/inspector --cli mailmcp server --method tools/call --tool-name list_accountsMCP Client Config
Use this server as a stdio MCP command:
{
"mcpServers": {
"multi-mail": {
"command": "node",
"args": ["C:\\Users\\clayg\\Documents\\Codex\\2026-05-27\\caleb-baskin-calebbaskin-6m-i-ll\\dist\\cli.js", "server"]
}
}
}If installed globally later, this can become:
{
"mcpServers": {
"multi-mail": {
"command": "mailmcp",
"args": ["server"]
}
}
}Example Agent Prompts
List my configured mail accounts.Search all my mail accounts for "invoice from Stripe" and show the newest 10 hits.Use my work account to draft a reply to this thread. Do not send it.Send the draft from my personal account only if it matches the body we just approved.Security Shape
The alpha is intentionally local-first:
Tokens are encrypted in
profiles.vault.json.The vault key is generated locally as
master.key, or derived fromMAILMCP_MASTER_KEYif set.On Windows,
initand vault writes try to remove inherited ACLs from the config directory, vault, and key so only the current user, Administrators, and SYSTEM can read them.No email contents or tokens are sent to this package's servers because there are no package servers.
Send operations require
confirm: "SEND".Delete/archive/label mutation tools are intentionally absent.
For a production public release, replace the local key-file fallback with OS keychain storage and complete the relevant Google/Microsoft verification work.
Verification
npm run checkThis runs the TypeScript build and local smoke tests. OAuth/API calls require real client credentials and user login.
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
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/claygeo/multi-mail-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
