Gmail MCP Server
Communicationstdiov1.1.0
MCP server for Gmail that lets AI agents read, search, draft, and send email, manage labels, and organize the inbox via the Gmail API with OAuth. Handy for triaging mail, drafting replies, and automating routine inbox workflows from an AI client.
Connect
Add this configuration to .claude/mcp.json
{
"mcpServers": {
"gmail": {
"command": "npx",
"args": [
"-y",
"@gongrzhe/server-gmail-autoauth-mcp"
],
"env": {
"GMAIL_OAUTH_CREDENTIALS": "<YOUR_GMAIL_OAUTH_CREDENTIALS>"
}
}
}
}Tools (3)
search_emails
Search the mailbox using Gmail search syntax.
{
"type": "object",
"required": [
"query"
],
"properties": {
"query": {
"type": "string",
"description": "Gmail search query (e.g., \"from:boss is:unread\")"
},
"max_results": {
"type": "integer",
"description": "Maximum number of messages to return"
}
}
}send_email
Send an email message.
{
"type": "object",
"required": [
"to",
"subject",
"body"
],
"properties": {
"to": {
"type": "array",
"items": {
"type": "string"
},
"description": "Recipient email addresses"
},
"body": {
"type": "string",
"description": "Email body"
},
"subject": {
"type": "string",
"description": "Email subject"
}
}
}create_draft
Create a draft email without sending it.
{
"type": "object",
"required": [
"to",
"subject",
"body"
],
"properties": {
"to": {
"type": "array",
"items": {
"type": "string"
},
"description": "Recipient email addresses"
},
"body": {
"type": "string",
"description": "Email body"
},
"subject": {
"type": "string",
"description": "Email subject"
}
}
}Resources
This server does not expose any resources.
Prompts
This server does not expose any prompts.
Server Information
- Author
- GongRzhe (@GongRzhe)
- License
- MIT
- Version
- 1.1.0
- Stars
- 1,900
- Last Updated
- June 24, 2026