Gmail Server for Model Context Protocol (MCP)
@MCP-Mirror
About Gmail Server for Model Context Protocol (MCP)
Mirror of
Basic information
Config
Add this server to your MCP-compatible client using the configuration below.
{
"mcpServers": {
"jasonsum_gmail-mcp-server": {
"command": "npx",
"args": [
"@modelcontextprotocol/inspector",
"uv",
"run",
"[absolute-path-to-git-repo]/src/gmail/server.py",
"--creds-file-path",
"[absolute-path-to-credentials-file]",
"--token-path",
"[absolute-path-to-access-tokens-file]"
]
}
}
}Tools
6Sends email to email address recipient
Moves email to trash
Marks email as read
Retrieves unread emails
Retrieves given email content
Open email in browser
Overview
What is Gmail Server for Model Context Protocol (MCP)?
This MCP server integrates with Gmail to enable sending, removing, reading, drafting, and responding to emails. The MCP client prompts the user before conducting such activities.
How to use Gmail Server for Model Context Protocol (MCP)?
First, set up a Google Cloud project, enable the Gmail API, configure an OAuth consent screen with test user, add OAuth scope https://www.googleapis.com/auth/gmail/modify, and create an OAuth Client ID for a Desktop App. Download the JSON credentials file and note its absolute path. Then configure an MCP client (e.g., Claude Desktop) using uv with parameters --creds-file-path and --token-path. On startup, a browser-based authentication flow saves token credentials to the specified token path.
Key features of Gmail Server for Model Context Protocol (MCP)
- Send emails to a recipient with subject and content
- Move emails to trash by ID
- Mark emails as read by ID
- Retrieve a list of unread emails
- Fetch full content of a specific email (marks as read)
- Open an email in the default browser by ID
Use cases of Gmail Server for Model Context Protocol (MCP)
- An AI assistant sends an email on behalf of the user
- Automatically trash or mark-as-read bulk messages
- Read unread emails and summarize them for the user
- Open a specific email in the browser for manual review
FAQ from Gmail Server for Model Context Protocol (MCP)
What Gmail OAuth scopes are required?
The server uses https://www.googleapis.com/auth/gmail.modify which allows reading, sending, and modifying emails.
How is authentication handled?
On server start, a browser-based OAuth flow launches. Token credentials are saved to the file specified by --token-path and reused on subsequent runs.
What are the required dependencies?
A Google Cloud project with the Gmail API enabled, a Desktop App OAuth client, and uv for running the server. No Python dependencies beyond those bundled with the server are mentioned.
Where are credentials and tokens stored?
Credentials are stored in the file path given to --creds-file-path. Access and refresh tokens are stored in the file path given to --token-path. Both are local file paths on the user’s machine.
How is the server invoked?
The server is run via uv run gmail --creds-file-path <path> --token-path <path>. It communicates over stdio (standard MCP transport).
More Communication MCP servers
MCP Communicator (Telegram)
qpd-vAn MCP server that enables communication with users through Telegram. This server provides a tool to ask questions to users and receive their responses via a Telegram bot.
MCP Teams Server
InditexTechAn MCP (Model Context Protocol) server implementation for Microsoft Teams integration, providing capabilities to read messages, create messages, reply to messages, mention members.
Modular Outlook MCP Server
ryakerMCP server for Claude to access Outlook data via Microsoft Graph API
Telegram MCP Server
kfastovTelegram user console client and archiver
Comments