返回市场
谷歌套件-MCP

谷歌套件-MCP

作者:rishipradeep-think4126 星标更新:2025-06-02

项目介绍

Google Workspace MCP 服务器

smithery 徽章

这是一个提供与 Gmail 和日历 API 交互工具的模型上下文协议(MCP)服务器。此服务器允许您通过 MCP 接口以编程方式管理您的电子邮件和日历事件。

功能

Gmail 工具

  • list_emails: 列出收件箱中的最近邮件,可选过滤
  • search_emails: 使用 Gmail 查询语法进行高级邮件搜索
  • send_email: 发送新邮件,支持抄送(CC)和密送(BCC)
  • modify_email: 修改邮件标签(归档、删除、标记已读/未读)

日历工具

  • list_events: 列出即将发生的日历事件,带日期范围过滤
  • create_event: 创建带有参与者的新的日历事件
  • update_event: 更新现有的日历事件
  • delete_event: 删除日历事件

预备条件

  1. Node.js: 安装 Node.js 版本 14 或更高版本
  2. Google Cloud 控制台设置
    • 访问 Google Cloud 控制台
    • 创建一个新项目或选择现有项目
    • 启用 Gmail API 和 Google 日历 API:
      1. 转到“API和服务”>“库”
      2. 搜索并启用“Gmail API”
      3. 搜索并启用“Google 日历 API”
    • 设置 OAuth 2.0 凭据:
      1. 转到“API和服务”>“凭据”
      2. 点击“创建凭据”>“OAuth 客户端 ID”
      3. 选择“网络应用”
      4. 将“授权重定向 URI”设置为包含:http://localhost:4100/code
      5. 记下客户端 ID 和客户端密钥

安装说明

通过 Smithery 安装

要通过 Smithery 自动安装 gsuite-mcp:

npx -y @smithery/cli install @rishipradeep-think41/gsuite-mcp --client claude

手动安装

  1. 克隆并安装

    git clone https://github.com/epaproditus/google-workspace-mcp-server.git
    cd google-workspace-mcp-server
    npm install
    
  2. 创建 OAuth 凭据: 在根目录中创建一个 credentials.json 文件:

    {
        "web": {
            "client_id": "YOUR_CLIENT_ID",
            "client_secret": "YOUR_CLIENT_SECRET",
            "redirect_uris": ["http://localhost:4100/code"],
            "auth_uri": "https://accounts.google.com/o/oauth2/auth",
            "token_uri": "https://oauth2.googleapis.com/token"
        }
    }
    
  3. 获取刷新令牌

    node get-refresh-token.js
    

    这将:

    • 在浏览器中打开 Google OAuth 认证
    • 请求以下权限:
      • https://www.googleapis.com/auth/gmail.modify
      • https://www.googleapis.com/auth/calendar
      • https://www.googleapis.com/auth/gmail.send
    • 将凭据保存到 token.json
    • 在控制台中显示刷新令牌
  4. 配置 MCP 设置: 将服务器配置添加到您的 MCP 设置文件中:

    • 对于 VSCode Claude 扩展:~/Library/Application Support/Code/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json
    • 对于 Claude 桌面应用:~/Library/Application Support/Claude/claude_desktop_config.json

    mcpServers 对象中添加以下内容:

    {
      "mcpServers": {
        "google-workspace": {
          "command": "node",
          "args": ["/path/to/google-workspace-server/build/index.js"],
          "env": {
            "GOOGLE_CLIENT_ID": "your_client_id",
            "GOOGLE_CLIENT_SECRET": "your_client_secret",
            "GOOGLE_REFRESH_TOKEN": "your_refresh_token"
          }
        }
      }
    }
    
  5. 构建并运行

    npm run build
    

使用示例

Gmail 操作

  1. 列出最近的邮件

    {
      "maxResults": 5,
      "query": "is:unread"
    }
    
  2. 搜索邮件

    {
      "query": "from:example@gmail.com has:attachment",
      "maxResults": 10
    }
    
  3. 发送邮件

    {
      "to": "recipient@example.com",
      "subject": "Hello",
      "body": "Message content",
      "cc": "cc@example.com",
      "bcc": "bcc@example.com"
    }
    
  4. 修改邮件

    {
      "id": "message_id",
      "addLabels": ["UNREAD"],
      "removeLabels": ["INBOX"]
    }
    

日历操作

  1. 列出事件

    {
      "maxResults": 10,
      "timeMin": "2024-01-01T00:00:00Z",
      "timeMax": "2024-12-31T23:59:59Z"
    }
    
  2. 创建事件

    {
      "summary": "团队会议",
      "location": "会议室",
      "description": "每周同步",
      "start": "2024-01-24T10:00:00Z",
      "end": "2024-01-24T11:00:00Z",
      "attendees": ["同事@example.com"]
    }
    
  3. 更新事件

    {
      "eventId": "event_id",
      "summary": "更新会议标题",
      "location": "虚拟",
      "start": "2024-01-24T11:00:00Z",
      "end": "2024-01-24T12:00:00Z"
    }
    
  4. 删除事件

    {
      "eventId": "event_id"
    }
    

故障排除

  1. 身份验证问题

    • 确保授予了所有必需的 OAuth 范围
    • 验证客户端 ID 和密钥是否正确
    • 检查刷新令牌是否有效
  2. API 错误

    • 检查 Google Cloud 控制台中的 API 配额和限制
    • 确保您的项目启用了这些 API
    • 验证请求参数是否符合所需格式

许可证

本项目根据 MIT 许可证发布。