Gmail MCP
Manage your Gmail account, including sending, reading, and organizing emails.
Gmail MCP
Allow Claude to search and retrieve emails from your Gmail account.
Setup
1. Get Google API Credentials
- Visit the Google Cloud Console
- Create a new project or select an existing one
- Enable the Gmail API for your project
- Navigate to "APIs & Services" > "Library"
- Search for "Gmail API" and enable it
- Create OAuth credentials:
- Go to "APIs & Services" > "Credentials"
- Click "Create Credentials" > "OAuth client ID"
- Select "Desktop application" as the application type
- Name your client and click "Create"
- Download the credentials JSON file
- Save it as
credentials.jsonin your project directory
2. Authorize the Application
Run the authorization command to generate your token:
uv run gmail-mcp auth --creds-path credentials.json --token-path token.json
This will open a browser window where you'll need to log in to your Google account and grant the necessary permissions. After authorization, a token.json file will be created in your project directory.
Configuring with Claude
Add the Gmail MCP server to your Claude configuration file:
{
"mcpServers": {
"gmail": {
"args": [
"--from",
"git+https://github.com/vinayak-mehta/gmail-mcp",
"gmail-mcp"
],
"command": "/Users/username/.local/bin/uvx",
"env": {
"GMAIL_CREDS_PATH": "/Users/username/path/to/gmail-mcp/credentials.json",
"GMAIL_TOKEN_PATH": "/Users/username/path/to/gmail-mcp/token.json"
}
}
}
}
Make sure to:
- Replace
/Users/username/path/to/gmail-mcpwith your actual project path - Adjust the
commandpath to your installeduvxexecutable - Provide correct paths to your
credentials.jsonandtoken.jsonfiles
Claude will now have access to the following tools:
1. Search Emails
Search for emails in your Gmail account.
Example prompt: "Search for all emails from [email protected]"
2. Get Email Content
Retrieve the full content of a specific email.
Example prompt: "Show me the full content of the email with the subject 'Meeting Tomorrow'"
3. List Messages
List recent messages from your Gmail inbox.
Example prompt: "List my 5 most recent emails"
Environment Variables
You can configure the paths to your credentials and token files using environment variables:
GMAIL_CREDS_PATH: Path to your credentials.json fileGMAIL_TOKEN_PATH: Path to your token.json file
Create a .env file in the project root with these variables for easy configuration.
เซิร์ฟเวอร์ที่เกี่ยวข้อง
Sinch Engage / MessageMedia MCP server
Sinch Engage (Sinch MessageMedia in AU) MCP server, which provides Sinch Engage APIs as MCP tools.
FastMail
Interact with FastMail's email, calendar, and contacts via its JMAP API.
WeCom Bot MCP Server
An MCP server for sending messages to WeCom (WeChat Work) bots.
MCP LinkedIn
Interact with LinkedIn using an unofficial API, requiring email and password for authentication.
kaomoji
MCP Server that provides kaomoji between conversations for AI Agents
Telnet MCP Server
A secure telnet client for LLM applications, designed for defensive security analysis of network devices.
rqbit
Interact with the rqbit torrent client API. Requires a running rqbit instance.
Perplexity Chat
A Python-based server for the Perplexity API that manages chat history and conversations.
agentsbase
Email infrastructure for AI agents — create mailboxes, send/receive emails, and auto-extract verification codes.
NotifyMeMaybe
A server for sending multi-platform notifications and creating interactive AI workflows, with support for Telegram, webhooks, and synchronous user interactions.