Multi-account Gmail on a Cloudflare Worker you deploy yourself: read, send, reply, labels, threads
io.github.mkpoli/gmail-mcp (MCP) Server
This MCP server provides Gmail access for multiple accounts deployed on a Cloudflare Worker. It supports core email operations including reading messages, sending mail, replying, and working with labels and threads. The server is intended for self-deployment using your Cloudflare Worker.
๐ ๏ธ Key Features
Multi-account Gmail
Runs on a Cloudflare Worker you deploy yourself
Read emails
Send emails
Reply to emails
Manage labels
Access email threads
๐ Use Cases
Integrate Gmail workflows into MCP-based applications
Read and reply to messages across multiple accounts
Organize and reference messages using Gmail labels and threads
โก Developer Benefits
Standard MCP tool access to Gmail functions
Suitable for Cloudflare Worker deployments
Supports multi-account operations, including labels and threads
โ ๏ธ Limitations
Limited to the described Gmail operations: read, send, reply, labels, and threads
gmail-mcp connects Gmail to Claude and any other MCP client. It can search and read mail, send and reply-all with quoted history, forward, handle attachments and inline images, and manage drafts, labels, and threads โ across several Google accounts at the same time.
It runs as a remote server on your own Cloudflare Worker, so the same connection answers from Claude Code on a laptop, claude.ai in a browser, and Claude on a phone. Each connection signs in to one Google account, and the Google refresh token stays in your Cloudflare account.
Two things push people here. The Gmail connectors built into Claude and Google read mail and write drafts, but cannot send, and hold one Google account per assistant account. Servers that can send are usually local processes โ fine at a desk, invisible from a phone.
google_workspace_mcp is the most complete project here. It covers all of Workspace rather than Gmail alone, and it appends your Gmail signature and pulls attachments straight from a URL, neither of which gmail-mcp does. shinzo-labs/gmail-mcp reaches vacation responders, delegates, and S/MIME through its 64 tools; those live under gmail.settings.*, a scope gmail-mcp never requests, so they stay beyond its reach whatever happens to a grant.
Two design differences decide most of the rest. Routing accounts by a call argument lets one grant touch every connected mailbox, while binding the mailbox to the connection means a wrong argument reaches nothing. And on reading, the local servers decode every part as UTF-8: ISO-2022-JP and Shift_JIS mail arrives garbled, and long messages that Gmail stores as attachment blobs come back with an empty body.
Deploy it
About ten minutes. You need a Cloudflare account, bun, and a Google account. A domain on the Cloudflare account is optional โ without one the Worker answers on workers.dev.
Google exposes no API for the next two steps, so they happen in the Cloud console:
OAuth consent screen โ External. While the app is unverified, add each mailbox you plan to connect under Test users.
Credentialsโ Create credentials โ OAuth client ID โ Web application, with https://<your-host>/callback as an authorized redirect URI. Keep the client ID and secret.
<your-host> is the domain you point at the Worker, or the workers.dev hostname it gets otherwise. Deploying first and coming back to fill this in works โ the guide the Worker serves at / shows the exact value.
2 ยท Deploy the Worker
The button copies the repository into your GitHub account, creates the KV namespace and the Durable Object, and asks for the four secrets. It deploys to workers.dev; a custom domain is attached afterwards under Settings โ Domains & Routes.
From a terminal instead:
sh
git clone https://github.com/mkpoli/gmail-mcp && cd gmail-mcp
bun install
bun run setup
bun run setup asks which domain to answer on, creates or reuses the OAUTH_KV namespace, takes the client ID and secret, generates a cookie key, and deploys. Those first two answers land in wrangler.local.jsonc, which git ignores โ wrangler.jsonc names no account's namespace and no one's domain, so a clone deploys anywhere. Re-running setup to rotate a single secret is safe.
3 ยท Connect a client
Leave the client ID and secret fields empty โ MCP clients register themselves.
sh
claude mcp add --transport http gmail-personal https://<your-host>/mcp
claude mcp add --transport http gmail-work https://<your-host>/mcp/work
Run /mcp in Claude Code to sign each connection in to its Google account. In claude.ai it is Settings โ Connectors โ Add custom connector with the same URL. Any single-segment label works after /mcp/, which is how one deployment serves several mailboxes to clients that reject two servers sharing a URL.
Your deployment serves this guide at https://<your-host>/.
Messages leave the way a mail client sends them: plain text with an HTML alternative, file attachments, and inline images referenced by cid:, nested as multipart/mixed โบ multipart/related โบ multipart/alternative. Subjects and display names use RFC 2047, filenames use RFC 2231, so Japanese, Chinese, and emoji survive the trip.
reply_all reads the original's Reply-To, From, To, and Cc, drops your own address and any address you send mail as, answers from the one the sender wrote to, carries the References chain, and quotes the original in whichever parts you send. forward_message reproduces the forwarded envelope and can re-attach the original's files.
Reading is bounded on purpose: message and thread bodies have character budgets, a whole response has a byte ceiling, and an attachment is returned inline only while it stays small enough to read. A long mailing-list thread, or a large file, comes back trimmed with a note saying so rather than filling the assistant's context.
How it works
Two OAuth flows meet in one Worker. The MCP client authenticates to the Worker; the Worker authenticates to Google on your behalf. Neither side holds the other's credentials.
sequenceDiagram
autonumber
participant C as MCP client<br/>(Claude Code ยท claude.ai)
participant W as Worker<br/>(OAuthProvider + McpAgent)
participant G as Google<br/>(OAuth + Gmail API)
C->>W: POST /register (dynamic client registration)
C->>W: GET /authorize (PKCE challenge)
W->>C: approval dialog
C->>G: consent screen โ pick the account
G->>W: GET /callback?code=โฆ
W->>W: allowlist check on the verified email
W->>G: exchange code โ access + refresh token
W->>C: MCP access token (Google tokens sealed inside the grant)
C->>W: POST /mcp โ tools/call
W->>G: Gmail REST (token refreshed as needed)
G->>W: message / thread / label data
W->>C: tool result
Gmail itself is called over plain fetch against the REST API. The official googleapis SDK assumes Node and carries far more than a Worker should ship, so message building, MIME parsing, and token refresh live in src/gmail.ts and src/utils.ts instead.
Endpoints
Path
Purpose
/mcp
MCP endpoint
/mcp/<label>
The same server under any single-segment label, for clients that reject two servers sharing a URL
/
This setup guide
/authorize ยท /token ยท /register ยท /callback
OAuth machinery
Who can sign in
ALLOWED_EMAILS decides, checked against the address Google reports as verified โ after consent, before any grant exists.
Value
Who gets in
(empty)
nobody
you@gmail.com, work@company.com
those accounts
*@company.com
anyone in that domain
*
any verified Google account
Each grant reaches only the mailbox that authenticated it, so widening this list never widens access to mailboxes already connected. Setting * lets strangers use your deployment, and your Google client's quota, for their own mail.
Limits
Two ceilings keep a shared deployment from being drained, both set in wrangler.jsonc:
Setting
Where
Default
What it bounds
MAX_ACCOUNTS
vars
25
Roughly how many distinct Google accounts may ever complete sign-in. Accounts already connected keep working when the cap is reached; new ones are turned away. Sign-ins arriving together each read the count before any of them is recorded, so the total can settle a little above this number. Google caps unverified apps at 100 users, so leave room below that.
RATE_LIMITER.simple.limit
unsafe.bindings
120 per 60s
Gmail calls one account may make in that window, across all of its sessions. Cloudflare keeps this count per location, so an account connecting from two regions gets roughly that many in each. A wide read spends several: search_messages returning 50 makes 51 calls.
REGISTER_LIMITER.simple.limit
unsafe.bindings
10 per 60s
Client registrations one address may make in that window. A client registers once and keeps the id it is given, so ordinary use never approaches this; the ceiling is there because registration needs no credentials and each one writes to KV.
On the Workers Free plan a further ceiling applies: 50 outbound requests per invocation. A wide read spends one per message, so search_messages and list_drafts want maxResults at 45 or below there; above it the surplus comes back as per-message errors rather than results. The paid plan allows 1000.
Raise either and redeploy. Cloudflare's rate limiter reads its ceiling from the
binding at build time, so the simple.limit on each is the only place that
changes it. A
single-user deployment can leave both alone โ normal assistant use sits far
below them.
Security
Self-hosting moves the trust question rather than removing it, so here is where everything sits.
Your tokens stay yours. Refresh tokens are encrypted inside their OAuth grant in your KV namespace. A session's Durable Object holds the hour-lived access token, and the MCP agent framework keeps a copy of the grant there for as long as the object lives, refresh token included. Both stores are your own Cloudflare account, encrypted at rest. Mail is never stored โ it passes through.
One session, one mailbox. The MCP session is bound to the account that opened it, so a grant for one mailbox cannot act on another through a borrowed session id.
Scope minimalism.gmail.modify covers reading, sending, labels, and trash. It excludes permanent deletion and all of gmail.settings.*, keeping auto-forwarding rules and filter exfiltration โ the classic mailbox backdoors โ outside what any stolen grant could do. Two read-only scopes are requested alongside it, userinfo.email and userinfo.profile: they are how the allowlist and the session binding know which account signed in, and they reach no mail.
Headers cannot be smuggled. Every outgoing header value is rejected if it contains CR, LF or NUL, so no argument can break out of its own field to append one โ a Bcc inside a subject line, say. Media types are validated, and quoted history is HTML-escaped. What this does not do is police the arguments themselves: bcc is a real parameter, so a model acting on an instruction hidden in a message body could still fill it in, and your client's approval prompt remains the check on that.
Access can be withdrawn. Narrowing ALLOWED_EMAILS stops new sign-ins. A single account's access is revoked at myaccount.google.com/connections. Rotating the Google client secret invalidates every grant at once.
The Worker decrypts mail in memory while serving a request, as any hosted relay must. If that is unacceptable for a particular mailbox, run a local MCP server for that one.
How it was tested
233 unit tests cover message construction (MIME nesting, RFC 2047 folding, RFC 2231 filenames, CR/LF rejection, base64 wrapping), body extraction across charsets, reply and forward composition, the Google token flows, the sign-in allowlist, the CSRF and state-binding checks that guard the browser side of sign-in, and the tools themselves against a stand-in Gmail โ session ownership, recipient composition, attachment selection, and what a partly-failed read returns.
Beyond that, every tool has run against real Gmail accounts, with a separate account checking what arrived:
Area
Result
Encoding
Japanese subjects folded across encoded words; emoji, ZWJ sequences, RTL Arabic, combining marks, and rare CJK round-tripped unchanged
Attachments
A CSV named ่ซๆฑๆธ.csv sent, delivered, and downloaded back byte-identical; an inline cid: image rendered by the recipient
Threading
reply_all addressed the sender, kept the third-party Cc, dropped its own address, and quoted the original in the same thread
Two accounts
Both connected to one deployment at once; a message id from one returned 404 on the other
Organizing
A nested CJK label created, renamed, applied by batch, and deleted; thread and message trash both reversed
Scale
A 15,000-message mailbox searched with Gmail operators and pagination without tripping a rate limit
Development
sh
bun run dev # wrangler dev on :8788
bun run check # biome + tsc
bun test# 233 unit tests
bun run assets # regenerate the light and dark diagrams
bun run deploy