Gmail MCP Server
Search emails using Gmail's search syntax, read full email content including body and attachments, and download attachments to local filesystem.
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 MCP Serverfind emails from example@gmail.com with attachments"
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 Server
An MCP (Model Context Protocol) server that provides Gmail integration for AI assistants. Search emails, read messages, and download attachments directly from your Gmail account.
Features
Search emails using Gmail's powerful search syntax (
from:,subject:,has:attachment, etc.)Read full email content including body and attachment metadata
Download attachments to your local filesystem
Quick Start
1. Set up Google Cloud credentials
Go to Google Cloud Console
Create a new project (or select existing)
Enable the Gmail API
Go to APIs & Services > Credentials
Click Create Credentials > OAuth client ID
Select Desktop app as application type
Download the JSON file and save it:
mkdir -p ~/.gmail-mcp
mv ~/Downloads/client_secret_*.json ~/.gmail-mcp/gcp-oauth.keys.json2. First-time authorization
Run once to complete OAuth (opens browser):
uvx mcp-gmail-readerBackup & Recovery
After a fresh OS install or losing your machine, here's what to restore:
File | Where | Backup? | Recovery |
| Local only | YES — password manager | Cannot regenerate without recreating GCP project |
| Local only | No | Regenerated by running |
| Git | No need — |
|
MCP registration |
| No | Re-add the JSON snippet from "Claude Code (CLI)" section above |
Recovery checklist (5 minutes after a fresh machine)
# 1. Clone the source
git clone https://github.com/Maheidem/gmail-mcp.git ~/Documents/gmail-mcp
# 2. Restore credentials from your password manager
mkdir -p ~/.gmail-mcp
# (paste gcp-oauth.keys.json into ~/.gmail-mcp/)
# 3. Install + first-run authorization (opens browser)
uvx mcp-gmail-reader
# 4. Re-register in Claude Code (see "Claude Code (CLI)" section below)The OAuth credentials JSON is the only thing that cannot be recovered without doing the full Google Cloud Console setup again. Back it up.
Setup by AI Tool
Claude Desktop
Add to your config file:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"gmail": {
"command": "uvx",
"args": ["mcp-gmail-reader"]
}
}
}Claude Code (CLI)
Add to your MCP settings (~/.claude/settings.json or project .mcp.json):
{
"mcpServers": {
"gmail": {
"command": "uvx",
"args": ["mcp-gmail-reader"]
}
}
}Cursor
Add to Cursor's MCP config (Settings > MCP Servers):
{
"gmail": {
"command": "uvx",
"args": ["mcp-gmail-reader"]
}
}Windsurf
Add to ~/.codeium/windsurf/mcp_config.json:
{
"mcpServers": {
"gmail": {
"command": "uvx",
"args": ["mcp-gmail-reader"]
}
}
}VS Code + Continue
Add to Continue's config (~/.continue/config.json):
{
"experimental": {
"modelContextProtocolServers": [
{
"transport": {
"type": "stdio",
"command": "uvx",
"args": ["mcp-gmail-reader"]
}
}
]
}
}Zed
Add to Zed's settings (~/.config/zed/settings.json):
{
"context_servers": {
"gmail": {
"command": {
"path": "uvx",
"args": ["mcp-gmail-reader"]
}
}
}
}Custom credentials path
If your credentials are in a different location:
{
"mcpServers": {
"gmail": {
"command": "uvx",
"args": ["mcp-gmail-reader"],
"env": {
"GMAIL_CREDENTIALS_PATH": "/path/to/your/credentials.json"
}
}
}
}Available Tools
search_emails
Search Gmail using Gmail search syntax.
Query examples:
from:example@gmail.com- emails from specific sendersubject:invoice- emails with subject containing "invoice"has:attachment- emails with attachmentsafter:2024/01/01- emails after dateis:unread- unread emailslabel:important- emails with specific labelin:inbox- emails in inbox
get_email
Get full email content by message ID (returned from search_emails).
Returns: id, from, to, subject, date, body, attachments list
download_attachment
Download email attachment to specified path.
Parameters: message_id, attachment_id, save_path
Development
git clone https://github.com/Maheidem/gmail-mcp.git
cd gmail-mcp
uv sync
# Run server
uv run python -m gmail_mcp
# Run with MCP inspector
uv run mcp dev src/gmail_mcp/server.pySecurity Notes
Only
gmail.readonlyscope is used - this server cannot send or modify emailsOAuth tokens are stored locally in
~/.gmail-mcp/token.jsonNever commit credentials or tokens to version control
License
MIT
This server cannot be installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
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/Maheidem/gmail-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server