这是一个通过Google Calendar API与谷歌会议互动的模型上下文协议(MCP)服务器。它为用户提供了程序化创建和管理谷歌会议的工具,极大提升了会议管理的效率。
该项目实现了一个MCP服务器,允许AI代理通过谷歌日历API创建、检索和管理谷歌会议。它利用MCP规范将这些功能作为工具公开给兼容的AI系统使用。
要自动通过Smithery为Claude Desktop安装Google Meet MCP Server,可使用以下命令:
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
在使用Google Meet MCP服务器之前,需要设置谷歌API凭证:
credentials.json
到项目根目录npm run setup
这将打开一个浏览器窗口,您可以在其中授权应用程序访问您的谷歌日历。
设置完成后,可以启动MCP服务器:
npm run start
服务器将运行并公开以下工具:
create-meeting
:创建新的谷歌会议list-meetings
:列出即将进行的谷歌会议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
}
}
}