A1 Gmail MCP
A1 Gmail MCP is an MCP server that lets an AI app work with a single Gmail mailbox through 18 tools: search, read, draft, send, organize, trash, and manage labels.
Search and list messages or threads with Gmail query syntax, label filters, pagination, and optional spam/trash inclusion.
Read full messages, conversation threads, and drafts with decoded bodies (truncation limits), headers, and attachment metadata (not attachment content).
Send email immediately via send_message, or safely via create_draft → get_draft → send_draft; replies can be threaded with thread_id, in_reply_to, and subject.
Modify message/thread state: mark read/unread, star/unstar, archive/move to inbox, and add/remove labels.
Manage the trash: trash or untrash individual messages or whole threads (no permanent-delete tool).
Manage drafts: list, read, create, replace/update, send, and permanently delete drafts.
Manage user labels: create, rename, delete, and adjust visibility settings; list labels with per-label counts.
Get the mailbox profile (email address, message/thread totals, historyId).
Make raw Gmail API calls via raw_request for attachment downloads, history sync, settings, and other uncovered endpoints (with caution).
Provides tools for reading and searching Gmail messages and threads, creating and managing drafts, sending emails, managing labels, and trashing or untrashing messages through the Gmail API.
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., "@A1 Gmail MCPShow my unread emails from this week about the Acme contract"
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
English | Русский
A1 Gmail MCP lets an AI app work with your Gmail mailbox in plain language. Search and read mail, prepare replies as drafts, send them when you are ready, keep labels tidy and use the trash instead of permanent deletion.
It uses the Gmail API with your Google account. It distinguishes a draft you can still edit from a sent email that cannot be recalled, and makes the limits of the Gmail API explicit instead of implying that every mail task is reversible.
18 tools. Search and read messages and threads, send email directly or through drafts, manage the draft lifecycle, labels and the trash.
Send deliberately. The draft → review → send path is first-class; sending is marked destructive, and the server never re-sends after an ambiguous failure — an email cannot be unsent.
The trash is the safety net. Removing mail goes through the reversible trash (about 30 days); there is deliberately no permanent message delete tool.
Bounded reading. Decoded bodies are truncated at an explicit limit and attachments come back as metadata, so a long newsletter cannot silently flood the conversation.
Minimal Google scope. It uses
gmail.modifyonly — no permanent deletion and no access to Gmail settings.
Start with a read-only question:
Show my unread emails from the last week and tell me which ones need a reply.
Connect the server · Explore use cases · Open technical documentation
See it work in a minute
You: What is unread in my inbox from this week about the Acme contract?
Assistant: Searches with Gmail query syntax and shows senders, subjects, dates and snippets. Nothing changes.
You: Draft a reply to the latest one: we send the signed copy on Friday.
Assistant: Creates a draft in the same thread and shows it for review. Nothing is sent.
You: Send it.
Assistant: Sends the draft. Sending is a separate, explicitly destructive step, so your AI app can ask for confirmation first.
Related MCP server: gmail-mcp
Contents
Quick start
You need Node.js 20+, a Google account and OAuth credentials from a Google Cloud project with the Gmail API enabled.
Add the server to your AI app.
Ask the read-only question above.
In the app: open Settings → MCP servers, select Add server, choose STDIO, enter the command npx -y mcp-google-gmail@latest and environment variables GOOGLE_GMAIL_CLIENT_ID, GOOGLE_GMAIL_CLIENT_SECRET, GOOGLE_GMAIL_REFRESH_TOKEN, then select Save and Restart.
From the command line:
codex mcp add google-gmail \
--env GOOGLE_GMAIL_CLIENT_ID=your_client_id \
--env GOOGLE_GMAIL_CLIENT_SECRET=your_client_secret \
--env GOOGLE_GMAIL_REFRESH_TOKEN=your_refresh_token \
-- npx -y mcp-google-gmail@latestcodex mcp listclaude mcp add \
--env GOOGLE_GMAIL_CLIENT_ID=your_client_id \
--env GOOGLE_GMAIL_CLIENT_SECRET=your_client_secret \
--env GOOGLE_GMAIL_REFRESH_TOKEN=your_refresh_token \
--transport stdio --scope user google-gmail \
-- npx -y mcp-google-gmail@latestclaude mcp listThe current official path is Settings → Extensions. For a custom desktop extension, open Advanced settings → Extension Developer → Install Extension…, select a .mcpb file and follow the prompts.
This repository currently publishes an npm stdio package and does not contain a .mcpb bundle. For Claude Desktop builds that still support local configuration, use the following JSON stdio configuration as a fallback:
{
"mcpServers": {
"google-gmail": {
"command": "npx",
"args": ["-y", "mcp-google-gmail@latest"],
"env": {
"GOOGLE_GMAIL_CLIENT_ID": "your_client_id",
"GOOGLE_GMAIL_CLIENT_SECRET": "your_client_secret",
"GOOGLE_GMAIL_REFRESH_TOKEN": "your_refresh_token"
}
}
}
}In those builds, save it to ~/Library/Application Support/Claude/claude_desktop_config.json on macOS or %APPDATA%\Claude\claude_desktop_config.json on Windows.
Claude Desktop MCP documentation
Add this to ~/.cursor/mcp.json on macOS/Linux or %USERPROFILE%\.cursor\mcp.json on Windows:
{
"mcpServers": {
"google-gmail": {
"type": "stdio",
"command": "npx",
"args": ["-y", "mcp-google-gmail@latest"],
"env": {
"GOOGLE_GMAIL_CLIENT_ID": "your_client_id",
"GOOGLE_GMAIL_CLIENT_SECRET": "your_client_secret",
"GOOGLE_GMAIL_REFRESH_TOKEN": "your_refresh_token"
}
}
}
}Run MCP: Open User Configuration and add:
{
"servers": {
"google-gmail": {
"type": "stdio",
"command": "npx",
"args": ["-y", "mcp-google-gmail@latest"],
"env": {
"GOOGLE_GMAIL_CLIENT_ID": "${input:gmail_client_id}",
"GOOGLE_GMAIL_CLIENT_SECRET": "${input:gmail_client_secret}",
"GOOGLE_GMAIL_REFRESH_TOKEN": "${input:gmail_refresh_token}"
}
}
},
"inputs": [
{ "type": "promptString", "id": "gmail_client_id", "description": "Google OAuth client ID" },
{ "type": "promptString", "id": "gmail_client_secret", "description": "Google OAuth client secret", "password": true },
{ "type": "promptString", "id": "gmail_refresh_token", "description": "Google OAuth refresh token", "password": true }
]
}Check it with MCP: List Servers.
What you can ask it to do
Triage the inbox
Show unread messages from the last seven days and group them by sender.
Find the conversation with Acme about the contract and summarize it, oldest to newest.
Which messages have attachments waiting for me? Show subjects and file names.
Write and send email
Draft a reply in this thread saying the signed copy goes out on Friday.
Show me the draft, tighten the wording, then send it.
Send a short status email to the team, with the manager in CC.
Keep the mailbox organized
Create a label
Receipts/2026and apply it to the matching messages.Mark this week's newsletters as read and archive them.
Move that thread to the trash — and restore it if I change my mind.
How mail changes
The safe path to sending is a draft:
create_draftprepares the email,get_draftshows it for review,send_draftsends it.send_messageskips the draft and sends immediately.A sent email is externally irreversible. After a timeout or a
5xxerror the server does not re-send; searchin:sentbefore trying again, because a replayed send would be a double-sent email.Removing a message or thread means trashing it.
manage_trashis reversible for about 30 days; there is deliberately no permanent-delete tool.Drafts are the exception:
update_draftreplaces the whole draft (the API has no partial edit) anddelete_draftis permanent, because drafts skip the trash.
Every call works on one mailbox — the account that granted the token. Decoded bodies are truncated at a configurable limit with explicit flags, and attachments come back as metadata only; attachment content is fetched through raw_request deliberately.
What can change
Operation | What happens | Confirmation boundary |
Search and read messages, threads, drafts, labels, the profile | Reads mailbox data | No change |
Create or update a draft | Prepares or replaces an unsent email | Changes the mailbox |
Change read, starred or archived state, apply or strip labels | Changes how mail is organized | Changes the mailbox |
Create or rename a label | Changes the label vocabulary | Changes the mailbox |
Trash or untrash a message or thread | Moves mail to or from the trash; reversible for ~30 days | Destructive |
Send an email or a draft | Delivers mail to real recipients; cannot be unsent | Destructive |
Delete a draft or a label | Removes it permanently, skipping the trash | Destructive |
Raw API request | Can call API methods without a dedicated tool | Potentially destructive |
The AI client controls confirmation prompts. The server marks reads, writes and destructive tools so the client can distinguish an inspection from a live change.
Getting access
Gmail requires OAuth 2.0; an API key is not enough.
Create or select a Google Cloud project and enable the Gmail API.
Configure the OAuth consent screen and create a Desktop app OAuth client.
Authorize the Google account whose mailbox you want to connect — every call works on that one mailbox. The OAuth 2.0 Playground can obtain the refresh token when Use your own OAuth credentials is enabled.
Request the scope:
https://www.googleapis.com/auth/gmail.modifyIt covers search, reading, sending, drafts, labels and the trash — but not permanent deletion and not Gmail settings. Permanent deletion through
raw_requestadditionally requires the fullhttps://mail.google.com/scope.
Testing-mode OAuth refresh tokens can expire after seven days. Publish the OAuth app, or use an Internal app in a Workspace domain, when you need long-lived access. Treat the client secret and refresh token as passwords.
Configuration
Variable | Required | Description |
| Yes* | OAuth client ID. |
| Yes* | OAuth client secret. |
| Yes* | OAuth refresh token. |
| Yes* | Short-lived alternative to the OAuth trio (about 1 hour). |
| No | Gmail API base URL override. |
| No | Per-request timeout; default |
| No | Temporary-error retries; default |
* Provide either the OAuth trio or an access token.
Data, limits and background work
Requests go to Gmail. The local server refreshes Google OAuth tokens and calls the Gmail API. Its anonymous telemetry contains an installation ID, package version, AI client and platform versions, and tool names — never OAuth tokens, mail content, tool arguments or prompts. Set
ASKADS_TELEMETRY=0to opt out.Google meters quota units. Gmail allows roughly 250 quota units per second per user; a send costs 100 units, a typical read 5. Consumer accounts can send about 500 emails a day, Workspace accounts about 2,000. On
429, the server uses backoff; reads also retry after network and5xxerrors, while sends and other writes are never replayed after an uncertain failure.There is no background polling. The server runs only when called. If your AI app supports scheduled tasks, it can check the inbox periodically;
raw_requestcan also reachhistory.listfor incremental sync.
Technical documentation
MCP capability catalog — task-oriented pages for every tool.
Support
Found a bug or need a scenario? Create an issue or write in Telegram.
Maintenance
Related MCP Servers
- AlicenseNot gradedqualityNot gradedmaintenanceEnables AI assistants to interact with Gmail through natural language, supporting email sending/reading, searching, draft management, label organization, and batch operations with secure OAuth authentication.
- AlicenseNot gradedqualityCmaintenanceEnables AI assistants to manage Gmail emails, including sending, searching, and organizing with labels and attachments via OAuth2.601MIT
- AlicenseNot gradedqualityDmaintenanceEnables AI assistants to manage Gmail through natural language interactions, including sending, reading, searching emails, and managing labels with auto authentication support.26,6781MIT
- AlicenseNot gradedqualityDmaintenanceEnables AI assistants to manage Gmail through natural language, including sending, reading, searching, labeling emails, managing attachments, and performing thread operations.3MIT
Related MCP Connectors
Manage Gmail end-to-end: search, read, send, draft, label, and organize threads. Automate workflow…
Manage Gmail messages, threads, labels, drafts, and settings from your workflows. Send and organiz…
AI email inbox and sending tools with attachments, search, live events, and webhooks.
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/A1-x-Tech/mcp-google-gmail'
If you have feedback or need assistance with the MCP directory API, please join our Discord server