Back to MCP directory
publicPublicdnsLocal runtime

cool-man-vk_google-meet-mcp-server

一个通过Google Calendar API创建和管理Google Meet会议的MCP服务器项目

article

README

🚀 谷歌Meet MCP服务器

谷歌Meet MCP服务器是一个通过Google Calendar API与谷歌Meet进行交互的模型上下文协议(MCP)服务器,为用户提供了创建和管理谷歌Meet会议的实用工具。

🚀 快速开始

该项目实现了MCP服务器,允许AI代理借助Google Calendar API创建、检索和管理谷歌Meet会议。它遵循MCP规范,将这些功能开放给兼容的AI系统使用。

📦 安装指南

通过Smithery安装

若要通过Smithery自动为Claude Desktop安装谷歌Meet MCP服务器,可使用以下命令:

npx -y @smithery/cli install @cool-man-vk/google-meet-mcp-server --client claude

手动安装

# 克隆仓库
git clone https://github.com/yourusername/google-meet-mcp.git

# 移动到项目目录
cd google-meet-mcp

# 安装依赖项
npm install

🔧 设置

在使用谷歌Meet MCP服务器前,需设置Google API凭证,具体步骤如下:

  1. 访问谷歌云控制台
  2. 创建新项目或选择现有项目。
  3. 启用Google Calendar API。
  4. 创建OAuth 2.0凭证(桌面应用程序)。
  5. 下载凭证JSON文件,并将其保存为credentials.json,放在项目根目录下。
  6. 运行设置脚本来进行身份验证和生成令牌:
npm run setup

执行上述命令后,会打开一个浏览器窗口,你可在其中授权应用程序访问你的谷歌日历。

💻 使用示例

基础用法

设置完成后,可启动MCP服务器:

npm run start

服务器启动后,将公开以下工具:

  • create-meeting:创建新的谷歌Meet会议。
  • list-meetings:列出即将进行的谷歌Meet会议。
  • get-meeting-details:获取特定会议的详细信息。
  • update-meeting:更新现有会议。
  • delete-meeting:删除会议。

高级用法

要让此服务器与兼容的MCP系统配合使用,需将以下内容添加到MCP设置配置文件中:

{
  "mcpServers": {
    "google-meet": {
      "command": "node",
      "args": ["path/to/google-meet-mcp/src/index.js"],
      "env": {},
      "disabled": false
    }
  }
}

✨ 主要特性

  • 支持使用自定义设置创建谷歌Meet会议。
  • 能够检索会议详细信息,包括加入URL。
  • 可对现有会议进行更新操作。
  • 支持删除会议。
  • 可以列出即将进行的会议。
help

Runtime guide

cloud

Hosted runtime

Hosted servers run from a provider-managed environment. You usually connect the MCP client to the hosted endpoint or follow the provider's authorization flow, without keeping a local process alive

  1. Open provider connection page
  2. Authorize or copy endpoint
  3. Connect from your MCP client
terminal

Local runtime / other methods

Local servers run on your own machine or infrastructure. You normally copy the server_config into your MCP client, install the required package, and provide env variables from env_schema when needed

  1. Copy server_config
  2. Install required package
  3. Fill env variables and restart client