Gmail & Google Calendar
FreeNot checkedGmail and Google Calendar MCP server with OAuth2 refresh tokens and multi-account support.
About
Gmail and Google Calendar MCP server with OAuth2 refresh tokens and multi-account support.
README
Gmail + Google Calendar MCP server for Claude. Works with any Google account — no gcloud CLI, no npm install, no external dependencies. Just Node.js (>= 18) and a Google Cloud OAuth client.
Uses OAuth2 refresh tokens stored in a local file, so it works in sandboxed desktop apps too. Supports multiple accounts simultaneously.
Requirements
- Node.js >= 18 — the only dependency. Everything uses Node's built-in stdlib (
https,readline,fs). Nonpm installneeded. - A Google Cloud project with OAuth credentials — the setup below walks you through creating one (~5 minutes).
No gcloud CLI. No Google SDK. No node_modules.
How it works
All accounts live in one local token file (~/.config/google-mcp/tokens.json), keyed by email. You run setup.js once per account you want to add. At call time:
- If you have one account, the plugin auto-selects it. No config needed.
- If you have multiple accounts, pass
account: "[email protected]"on each call, or setGOOGLE_ACCOUNTenv var to choose a default.
Nothing in the plugin files has your identity baked in. Install once, add as many accounts as you like.
Setup (one-time, ~5 minutes)
Step 1: Create a Google Cloud project and OAuth credentials
Go to Google Cloud Console and create a new project (or reuse an existing one). Name it something like "google-mcp".
Enable the APIs you need. At minimum:
- Gmail API — click Enable
- Google Calendar API — click Enable
Configure the OAuth consent screen:
- Go to APIs & Services → OAuth consent screen
- Choose External (unless you have a Google Workspace org and want Internal)
- Fill in the required fields: app name (e.g. "email-mcp"), user support email (your email), developer contact email (your email). The rest can be left blank. Google will not allow you to use "Google" or similar blacklisted terms in the app name.
- On the Scopes page, click Add or Remove Scopes and add:
https://www.googleapis.com/auth/gmail.modifyhttps://www.googleapis.com/auth/calendar
- On the Test users page, click Add Users and enter the Google email address(es) you want to connect. While the app is in "Testing" status, only these accounts can authorize. You can add more later.
- Click Save and Continue through to the summary, then Back to Dashboard.
Create OAuth credentials:
- Go to APIs & Services → Credentials
- Click Create Credentials → OAuth client ID
- Application type: Desktop app
- Name it "google-mcp" (or anything you'll recognize)
- Click Create
- Click Download JSON — this saves a
client_secret_*.jsonfile to your Downloads folder
Each person using this plugin creates their own OAuth app and credentials. Google doesn't allow sharing client secrets across users.
Step 2: Authorize your first account
node setup.js --client-secrets ~/Downloads/client_secret_*.json
Opens Google's consent screen → log in → paste the code back. Saves a refresh token to ~/.config/google-mcp/tokens.json.
Step 3: Install the MCP server
Claude Code and Claude Desktop / Cowork have separate MCP configurations — installing in one does not make it available in the other. Pick the option(s) that match where you use Claude.
Claude Code (CLI / VS Code / JetBrains)
claude mcp add google-mcp \
-e GOOGLE_MCP_CONFIG="$HOME/.config/google-mcp/tokens.json" \
-- node /path/to/google-mcp/server/index.js
Or via the UI: Settings > Developer > MCP Servers > Add, then fill in:
- Name:
google-mcp - Command:
node /path/to/google-mcp/server/index.js - Environment:
GOOGLE_MCP_CONFIG=~/.config/google-mcp/tokens.json
Claude Desktop / Cowork
Add this under mcpServers in ~/Library/Application Support/Claude/claude_desktop_config.json (macOS):
"google-mcp": {
"command": "/usr/local/bin/node",
"args": ["/path/to/google-mcp/server/index.js"],
"env": { "GOOGLE_MCP_CONFIG": "${HOME}/.config/google-mcp/tokens.json" }
}
Tip: use an absolute path for command — a bare "node" can silently break when the GUI-launch PATH diverges from your shell PATH.
All options auto-select your account when only one is configured.
Adding more accounts
Just run setup.js again with each account you want to add:
node setup.js --client-secrets ~/Downloads/client_secret_*.json
# (log in as your second account this time)
Each account gets appended to tokens.json — nothing is overwritten.
Once you have multiple accounts, use them per call:
"Search my personal Gmail at [email protected] for unread messages" "Check the calendar for [email protected] for tomorrow"
Or set a default by editing .mcp.json:
"env": {
"GOOGLE_ACCOUNT": "[email protected]"
}
Token file format
~/.config/google-mcp/tokens.json:
{
"accounts": {
"[email protected]": { "client_id": "...", "client_secret": "...", "refresh_token": "..." },
"[email protected]": { "client_id": "...", "client_secret": "...", "refresh_token": "..." }
}
}
Override the path with the GOOGLE_MCP_CONFIG env var.
Available tools
| Tool | Description |
|---|---|
gmail_search |
Search Gmail with standard query syntax |
gmail_read |
Read a full message by ID |
gmail_create_draft |
Create a draft email |
calendar_list_events |
List upcoming events |
calendar_get_event |
Get a specific event's details |
All tools accept an optional account: "[email protected]" parameter.
Troubleshooting
"Multiple accounts configured" — Pass account: in the call, or set GOOGLE_ACCOUNT in .mcp.json.
"No accounts configured" — Run setup.js at least once.
"No credentials found for X" — Run setup.js for that account.
"Token refresh failed: invalid_grant" — Refresh token expired or revoked. Run setup.js again for that account; the old token is overwritten.
"No refresh token returned" — You already authorized this app for this Google account. Go to myaccount.google.com/permissions, revoke it, and run setup.js again.
Installing Gmail & Google Calendar
This server has no published package — it is built from source. Open the repository and follow its README.
▸ github.com/grahac/google-mcpFAQ
Is Gmail & Google Calendar MCP free?
Yes, Gmail & Google Calendar MCP is free — one-click install via Unyly at no cost.
Does Gmail & Google Calendar need an API key?
No, Gmail & Google Calendar runs without API keys or environment variables.
Is Gmail & Google Calendar hosted or self-hosted?
Self-hosted: the server runs locally on your machine via the install command above.
How do I install Gmail & Google Calendar in Claude Desktop, Claude Code or Cursor?
Open Gmail & Google Calendar on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.
Related MCPs
Gmail
Read, send and search emails from Claude
by GoogleSlack
Send, search and summarize Slack messages
by SlackRunbear
No-code MCP client for team chat platforms, such as Slack, Microsoft Teams, and Discord.
Discord Server
A community discord server dedicated to MCP by [Frank Fiegel](https://github.com/punkpeye)
Compare Gmail & Google Calendar with
Not sure what to pick?
Find your stack in 60 seconds
Author?
Embed badge for your README
Browse similar
All communication MCPs
