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.

连接

将此配置添加到 .claude/mcp.json

{
  "mcpServers": {
    "gmail": {
      "command": "npx",
      "args": [
        "-y",
        "@gongrzhe/server-gmail-autoauth-mcp"
      ],
      "env": {
        "GMAIL_OAUTH_CREDENTIALS": "<YOUR_GMAIL_OAUTH_CREDENTIALS>"
      }
    }
  }
}

工具 (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"
    }
  }
}

资源

此服务器未提供任何资源。

提示词

此服务器未提供任何提示词。

服务器信息

作者
GongRzhe (@GongRzhe)
代码仓库
https://github.com/GongRzhe/Gmail-MCP-Server
许可证
MIT
版本
1.1.0
星标
1,900
最后更新
2026年6月24日
Gmail MCP Server - MCP Server | OpenModels