gmail-mcp
Remote MCP server on Cloudflare Workers that exposes multiple Gmail accounts to Claude, replicating Anthropic's built-in Gmail connector with an added account parameter.
README
gmail-mcp
Remote MCP server on Cloudflare Workers exposing multiple Gmail accounts to Claude through one connector. Tool names, descriptions, and response shapes replicate Anthropic's built-in Gmail connector; the only addition is a required account parameter on every tool (plus account: "all" fan-out on search_threads).
Architecture
/mcp: Streamable HTTP MCP endpoint. Two auth paths: MCP OAuth (what claude.ai uses; dynamic client registration + PKCE viaworkers-oauth-provider, with the/authorizeapproval page gated bySETUP_SECRET) or a static bearer secret (MCP_SECRET) for CLI clients and tests./connect/<alias>?key=<SETUP_SECRET>: browser route that runs the Google OAuth flow for one account and stores its refresh token in KV./oauth/callback: Google OAuth redirect target.- Tokens live in the
GMAIL_KVnamespace (refresh:<alias>plus a short-livedaccess:<alias>cache). Scope isgmail.modify: read, search, labels, drafts; no send. - Requires a Workers paid plan:
search_threadsandlist_draftsmake one Gmail request per result, so a largepageSize(oraccount: "all") exceeds the free plan's 50-subrequest cap.
Configuration
ACCOUNTSvar inwrangler.jsonc: comma-separated account aliases. Rerunnpx wrangler deployafter changing it.- Secrets (set with
npx wrangler secret put <NAME>):MCP_SECRET: bearer token Claude sends; anyone holding it can read the connected mailboxes.SETUP_SECRET: gates the/connectroutes.GOOGLE_CLIENT_ID_<ALIAS>/GOOGLE_CLIENT_SECRET_<ALIAS>per account, alias uppercased (e.g.GOOGLE_CLIENT_ID_CANDIX).
Per-account Google setup (~10 min, once per Workspace org)
- Go to https://console.cloud.google.com and create a project inside that Workspace org (top-left project picker > New project).
- APIs & Services > Library > search "Gmail API" > Enable.
- APIs & Services > OAuth consent screen: User type Internal (no verification, refresh tokens do not expire), fill in the app name and contact email.
- APIs & Services > Credentials > Create credentials > OAuth client ID > Application type Web application. Add the authorized redirect URI:
https://gmail-mcp.<your-subdomain>.workers.dev/oauth/callback. - Copy the client ID and secret into Worker secrets:
npx wrangler secret put GOOGLE_CLIENT_ID_<ALIAS> npx wrangler secret put GOOGLE_CLIENT_SECRET_<ALIAS> - Visit
https://gmail-mcp.<your-subdomain>.workers.dev/connect/<alias>?key=<SETUP_SECRET>in a browser while signed in to that Google account, and approve.
Re-run step 6 anytime to reconnect (e.g. after revoking access).
Connect to Claude
Settings > Connectors > Add custom connector:
- URL:
https://gmail-mcp.<your-subdomain>.workers.dev/mcp - Leave the OAuth client ID/secret fields empty (Claude registers itself dynamically).
- Click Add, then Connect: an approval page opens; paste
SETUP_SECRETand approve.
The connector then works on claude.ai web, mobile, desktop, and Claude Code.
Rotating the bearer secret
npx wrangler secret put MCP_SECRET
Then update the Authorization header in the Claude connector settings.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.