gmail-mcp
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-mcpfind emails from alice in account work"
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.
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.
Related MCP server: Outlook MCP Server
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/mcpLeave 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_SECRETThen update the Authorization header in the Claude connector settings.
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 Servers
- Flicense-qualityCmaintenanceA Cloudflare Workers-based implementation of the Model Context Protocol server with OAuth login, allowing Claude and other MCP clients to connect to remote tools.Last updated1
- Alicense-qualityBmaintenanceA Model Context Protocol server bridging Claude to Microsoft Outlook + Teams (email, calendar, contacts, tasks, files, Teams meeting recordings + transcripts), deployed on Cloudflare Workers.Last updated181MIT
- Alicense-qualityBmaintenanceA remote MCP connector deployed as a Cloudflare Worker that gives Claude access to Google Gemini models, enabling image generation/editing, model auditing, and large context digesting.Last updated87MIT
- Flicense-qualityCmaintenanceA remote MCP server deployed on Cloudflare Workers without authentication, enabling integration with AI clients like Claude Desktop and Cloudflare AI Playground for tool execution.Last updated
Related MCP Connectors
Cloudflare Workers MCP server: email-validator
Hosted MCP server connecting claude.ai, ChatGPT and other AI apps to your own computer
MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.
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/tavoyne/gmail-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server