这是一个通过Claude或Cursor管理Zoom会议的Model Context Protocol (MCP)服务器。
此服务器允许您使用标准化的MCP接口来创建、更新、删除和检索Zoom会议,使其易于与Claude和Cursor等AI工具集成。
要使用此MCP服务器与Claude或Cursor一起工作,请在您的MCP配置文件(Claude:claude_desktop_config.json | Cursor:.cursor/mcp.json)中添加以下内容:
{
"mcpServers": {
"zoom": {
"command": "npx",
"args": [
"-y", "@prathamesh0901/zoom-mcp-server"
],
"env": {
"ZOOM_ACCOUNT_ID": "您的Zoom账户ID",
"ZOOM_CLIENT_ID": "您的Zoom客户端ID",
"ZOOM_CLIENT_SECRET": "您的Zoom客户端密钥"
}
}
}
}
🛡️ 使用您在Zoom Marketplace创建的应用凭证替换上述凭证。
| 工具 | 描述 |
|---|---|
get_meetings | 检索所有活跃的Zoom会议 |
create_meeting | 创建新的Zoom会议 |
update_meeting | 更新现有的会议 |
delete_meeting | 删除Zoom会议 |
每个工具都使用Zod模式验证参数实现。
克隆仓库:
git clone https://github.com/Prathamesh0901/zoom-mcp-server.git
cd zoom-mcp-server
安装依赖项:
npm install
在开发模式下运行:
npm run dev
构建生产环境:
npm run build
运行编译后的服务器:
npm start
欢迎并感谢您的贡献!要贡献:
git checkout -b feature/your-feature-name
git commit -m "添加某些功能"
本项目采用MIT许可证。