Back to Browse

Google Gmail MCP Server

Developer ToolsLow Risk10.0MCP RegistryLocal
Free

Server data from the Official MCP Registry

MCP server for the Gmail API: search, read and send email, manage drafts, labels and the trash.

About

MCP server for the Gmail API: search, read and send email, manage drafts, labels and the trash.

Security Report

10.0
Low Risk10.0Low Risk

Valid MCP server (1 strong, 1 medium validity signals). No known CVEs in dependencies. Package registry verified. Imported from the Official MCP Registry. Trust signals: trusted author (16/16 approved).

3 files analyzed · 1 issue found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

Permissions Required

This plugin requests these system permissions. Most are normal for its category.

HTTP Network Access

Connects to external APIs or services over the internet.

What You'll Need

Set these up before or after installing:

Google OAuth2 client id (refresh-token flow).Optional

Environment variable: GOOGLE_GMAIL_CLIENT_ID

Google OAuth2 client secret (refresh-token flow). Treat it as a secret.Required

Environment variable: GOOGLE_GMAIL_CLIENT_SECRET

Google OAuth2 refresh token, exchanged for access tokens automatically. Treat it as a secret.Required

Environment variable: GOOGLE_GMAIL_REFRESH_TOKEN

Static OAuth2 access token (~1h lifetime) — alternative to the refresh-token trio, mostly for testing.Required

Environment variable: GOOGLE_GMAIL_ACCESS_TOKEN

API root override.Optional

Environment variable: GOOGLE_GMAIL_API_BASE

Per-request timeout in milliseconds.Optional

Environment variable: GOOGLE_GMAIL_TIMEOUT_MS

Retries on transient errors (429 always; 5xx/network for reads).Optional

Environment variable: GOOGLE_GMAIL_MAX_RETRIES

How to Install

Add this to your MCP configuration file:

{
  "mcpServers": {
    "io-github-a1-x-tech-mcp-google-gmail": {
      "env": {
        "GOOGLE_GMAIL_API_BASE": "your-google-gmail-api-base-here",
        "GOOGLE_GMAIL_CLIENT_ID": "your-google-gmail-client-id-here",
        "GOOGLE_GMAIL_TIMEOUT_MS": "your-google-gmail-timeout-ms-here",
        "GOOGLE_GMAIL_MAX_RETRIES": "your-google-gmail-max-retries-here",
        "GOOGLE_GMAIL_ACCESS_TOKEN": "your-google-gmail-access-token-here",
        "GOOGLE_GMAIL_CLIENT_SECRET": "your-google-gmail-client-secret-here",
        "GOOGLE_GMAIL_REFRESH_TOKEN": "your-google-gmail-refresh-token-here"
      },
      "args": [
        "-y",
        "mcp-google-gmail"
      ],
      "command": "npx"
    }
  }
}

Documentation

View on GitHub

From the project's GitHub README.

Gmail MCP

English | Русский

npm CI Glama License: MIT

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.modify only — 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.

Contents

Quick start

You need Node.js 20+, a Google account and OAuth credentials from a Google Cloud project with the Gmail API enabled.

  1. Prepare Google OAuth access.
  2. Add the server to your AI app.
  3. 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@latest
codex mcp list

Codex MCP documentation

claude 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@latest
claude mcp list

Claude Code MCP documentation

The 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"
      }
    }
  }
}

Cursor MCP documentation

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.

VS Code MCP documentation

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/2026 and 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

  1. The safe path to sending is a draft: create_draft prepares the email, get_draft shows it for review, send_draft sends it. send_message skips the draft and sends immediately.
  2. A sent email is externally irreversible. After a timeout or a 5xx error the server does not re-send; search in:sent before trying again, because a replayed send would be a double-sent email.
  3. Removing a message or thread means trashing it. manage_trash is reversible for about 30 days; there is deliberately no permanent-delete tool.
  4. Drafts are the exception: update_draft replaces the whole draft (the API has no partial edit) and delete_draft is 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

OperationWhat happensConfirmation boundary
Search and read messages, threads, drafts, labels, the profileReads mailbox dataNo change
Create or update a draftPrepares or replaces an unsent emailChanges the mailbox
Change read, starred or archived state, apply or strip labelsChanges how mail is organizedChanges the mailbox
Create or rename a labelChanges the label vocabularyChanges the mailbox
Trash or untrash a message or threadMoves mail to or from the trash; reversible for ~30 daysDestructive
Send an email or a draftDelivers mail to real recipients; cannot be unsentDestructive
Delete a draft or a labelRemoves it permanently, skipping the trashDestructive
Raw API requestCan call API methods without a dedicated toolPotentially 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.

  1. Create or select a Google Cloud project and enable the Gmail API.

  2. Configure the OAuth consent screen and create a Desktop app OAuth client.

  3. 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.

  4. Request the scope:

    https://www.googleapis.com/auth/gmail.modify
    

    It covers search, reading, sending, drafts, labels and the trash — but not permanent deletion and not Gmail settings. Permanent deletion through raw_request additionally requires the full https://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

VariableRequiredDescription
GOOGLE_GMAIL_CLIENT_IDYes*OAuth client ID.
GOOGLE_GMAIL_CLIENT_SECRETYes*OAuth client secret.
GOOGLE_GMAIL_REFRESH_TOKENYes*OAuth refresh token.
GOOGLE_GMAIL_ACCESS_TOKENYes*Short-lived alternative to the OAuth trio (about 1 hour).
GOOGLE_GMAIL_API_BASENoGmail API base URL override.
GOOGLE_GMAIL_TIMEOUT_MSNoPer-request timeout; default 60000 ms.
GOOGLE_GMAIL_MAX_RETRIESNoTemporary-error retries; default 3.

* 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=0 to 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 and 5xx errors, 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_request can also reach history.list for incremental sync.

Technical documentation

Support

Found a bug or need a scenario? Create an issue or write in Telegram.

Reviews

No reviews yet

Be the first to review this server!