Multi-account Gmail MCP server β read, search, draft, and label across every inbox.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
We haven't yet run this listing's install command through our automated sandbox check. This isn't a red flag β we're steadily working through the catalog.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
Inspect callable tools, capabilities, and parameters exposed to AI agents by Multi Account Gmail.
list_accountsAuthorized accounts + last-used time. Discover valid `account` values.
search_messagesMessage summaries (Gmail search syntax) with ids.
read_messageDecoded headers, plaintext body (HTML stripped if needed), attachment metadata. Body capped by default; pass `max_body_chars=0` for the full body.
read_threadEvery message in the thread, in order. Each body capped by default; `max_body_chars=0` for full.
download_attachmentsSave a message's attachments to disk and return absolute paths. Address them by the `#N` shown in `read_message`; omit `index` for all of them. Fixed download root, no destination argument. Dangerous file types and anything on a spam-labeled message are refused.
search_all_accountsOne search across **every** account, each result tagged by account.
An MCP server that reads across all your Gmail accounts from one connection.
Most Gmail integrations β including the native connectors β bind a single
account per OAuth grant: connect a second inbox and you disconnect the first.
gmail-mcp keeps any number of accounts authorized at once. One Google Cloud
client authorizes them all, each lands as a row in a local SQLite file, and every
tool takes an account argument that routes to the right mailbox.
search_all_accounts sweeps all of them in a single query.
Python 3.12+ Β· MIT Β· stdio MCP server + auth CLI Β· local SQLite token store
It's built to be owned completely: runs in-process over stdio, stores tokens in one SQLite file you can inspect, copy, or delete, talks only to Google and your MCP client, and hardcodes no secrets.
It reads, searches, drafts, and labels. It doesn't send β create_draft leaves
a draft for you to send yourself. That's a deliberate default (reasoning in
Security model), not a hard stance; if you want autonomous
send, it's a small addition or a different server.
Authorize N accounts once via the CLI. Then every tool takes an account, and
search_all_accounts hits all of them at once:
One query, every inbox, each result tagged with its account and carrying the
message id β so the agent can chain read_message(account, id) or
create_draft(...) next.
One OAuth client, many inboxes. A single Google Cloud project and one
client_secret.json authorize every account. Adding the tenth inbox is the same
one-command flow as the first.
Boring storage. Tokens live in one SQLite file under ~/.gmail-mcp/. No
daemon, no keyring dependency, no cloud. Back it up by copying it; revoke an
account by deleting a row; inspect it with any SQLite tool.
Least privilege. Four granular scopes β gmail.readonly, gmail.compose,
gmail.modify, gmail.settings.basic β never the full-mailbox
https://mail.google.com/. It can read, draft, label, and manage filters; it
never sends mail, and filters it creates can't forward mail off-account.
Headless-friendly. The auth flow assumes the server may have no browser: it prints a consent URL, binds a fixed port, and you SSH-forward the redirect. Works fine on a desktop too.
Every tool except list_accounts and search_all_accounts takes an account
(the email address). Unknown accounts return an error listing the authorized ones.
| Tool | Arguments | Returns |
|---|---|---|
list_accounts | β | Authorized accounts + last-used time. Discover valid account values. |
search_messages | account, query, max_results=20 | Message summaries (Gmail search syntax) with ids. |
read_message | account, message_id, format="full", max_body_chars? | Decoded headers, plaintext body (HTML stripped if needed), attachment metadata. Body capped by default; pass max_body_chars=0 for the full body. |
read_thread | account, thread_id, max_body_chars? | Every message in the thread, in order. Each body capped by default; max_body_chars=0 for full. |
download_attachments | account, message_id, index? | Save a message's attachments to disk and return absolute paths. Address them by the #N shown in read_message; omit index for all of them. Fixed download root, no destination argument. Dangerous file types and anything on a spam-labeled message are refused. |
search_all_accounts | query, max_results_per_account=10 | One search across every account, each result tagged by account. |
create_draft | account, body, to?, subject?, cc?, bcc?, html=false, reply_to_message_id?, reply_all=false, from_addr? | A draft (not sent). Returns the draft id. With reply_to_message_id the draft is a reply inside that message's thread: recipient, subject, In-Reply-To, References and the thread id come from it, and to/subject become optional overrides. Without it, to and subject are required. from_addr sets the From header for a verified send-as alias; it defaults to the account address. |
list_drafts | account, max_results=20 | Draft ids in the account. |
list_labels | account | The account's labels (name + id). |
modify_labels | account, selection (message_id | message_ids | query), add?, remove? | Add/remove labels on a selection (one id, a list, or everything a query matches), batched 1000/call. General mutator: archive = remove INBOX, mark-read = remove UNREAD, star = add STARRED. |
trash | account, selection (message_id | message_ids | query) | Move a selection to Trash (recoverable 30 days; not permanent delete). Refuses an empty selection. |
bulk_action | account, action, selection (message_id | message_ids | query) | Friendly verb layer over modify_labels. action β archive/unarchive/mark_read/mark_unread/star/unstar/spam/unspam/trash/untrash. Batched 1000/call; refuses an empty selection. |
read_messages | account, message_ids | query, max_results=25 | Batch-read full content of many messages in one call (vs. N read_message calls). |
count_messages | query, account?, all_accounts=false | Count matches without fetching content β blast-radius check before a bulk action. all_accounts gives a per-account breakdown + total. |
list_filters | account | The account's filters: id, criteria, actions (label ids shown as names). |
create_filter | account, one of from_address/to_address/subject/query/has_attachment, plus an action (archive/mark_read/delete/star or add_labels/remove_labels) | A server-side rule applied to incoming mail. Can't forward off-account. |
delete_filter | account, filter_id | Remove a filter by id (leaves already-acted-on mail alone). |
Authorization happens once per account through the CLI (it needs a browser). After that the stdio server reads tokens straight from SQLite, refreshing access tokens on demand and persisting them back. The rest of this section is the "why it works the way it does" detail.
How gmail-mcp authenticates to Gmail, juggles multiple accounts under a single
OAuth client, refreshes tokens over time, and authorizes accounts on a headless
server. If you just want to get running, jump to Quickstart.
gmail-mcp authenticates using a Google "Desktop app" OAuth client (an
installed application in OAuth 2.0 terms), driven by the InstalledAppFlow
helper from google-auth-oauthlib.
Why an installed-app / desktop client. Installed apps run on a machine the
end user controls, so OAuth treats them as public clients: the client_secret
in the downloaded client_secret.json is not assumed to be confidential.
That's the right trust model for a local CLI/desktop tool β there's no
server-side component that could keep a secret truly secret, and security rests
on the user controlling the redirect (the loopback address) rather than on secret
confidentiality. It's the client type Google recommends for command-line and
desktop tools.
The loopback redirect flow. After you approve consent in a browser, Google
redirects the authorization code to http://localhost:<port>/, where a tiny
throwaway HTTP server (started by InstalledAppFlow.run_local_server) catches
it. gmail-mcp pins this to a fixed port (default 8765, override with
GMAIL_MCP_OAUTH_PORT) and runs with open_browser=False so it works on
machines with no browser β see The headless auth path.
Scopes requested. Four granular scopes β never the full-mailbox
https://mail.google.com/:
Factual signals from GitHub, npm, and our automated checks β not a rating.
No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/multi-account-gmail)<a href="https://allmcps.com/mcp/multi-account-gmail"><img src="https://allmcps.com/api/badge/multi-account-gmail?style=directory" alt="Multi Account Gmail on AllMCPs" /></a>