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.
Bağlan
Bu yapılandırmayı şuraya ekleyin: .claude/mcp.json
{
"mcpServers": {
"gmail": {
"command": "npx",
"args": [
"-y",
"@gongrzhe/server-gmail-autoauth-mcp"
],
"env": {
"GMAIL_OAUTH_CREDENTIALS": "<YOUR_GMAIL_OAUTH_CREDENTIALS>"
}
}
}
}Araçlar (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"
}
}
}Kaynaklar
Bu sunucu herhangi bir kaynak sunmuyor.
Prompt'lar
Bu sunucu herhangi bir prompt sunmuyor.
Sunucu bilgileri
- Yazar
- GongRzhe (@GongRzhe)
- Lisans
- MIT
- Sürüm
- 1.1.0
- Yıldızlar
- 1,900
- Son güncelleme
- 24 Haziran 2026