Zoom MCP Server
Enables interaction with the Zoom API to manage meetings, retrieve cloud recording transcripts, and access team chat messages. The server supports listing account users and participants, featuring a configurable read-only mode for secure tool access.
README
@kindflow/zoom-mcp-server
MCP server that gives Claude Code native tool access to the Zoom API. Supports meetings, transcripts, users, and team chat.
Features
- Meeting Transcripts — Fetch and parse cloud recording transcripts into clean, readable text
- Meetings — List, create, update, and delete meetings; view past meeting participants
- Users — List and inspect account users
- Team Chat — List channels, read messages, and send messages
- Read-Only Mode — Safe by default; write tools only available when explicitly enabled
Prerequisites
You need a Zoom Server-to-Server OAuth app. Create one at marketplace.zoom.us:
- Go to Develop > Build App > Server-to-Server OAuth
- Add the required scopes for the APIs you want to use:
cloud_recording:read:admin— for transcripts and recordingsmeeting:read:admin,meeting:write:admin— for meetingsuser:read:admin— for userschat_message:read:admin,chat_message:write:admin— for team chatchat_channel:read:admin— for listing channels
- Note your Account ID, Client ID, and Client Secret
Setup with Claude Code
Quick setup (CLI)
claude mcp add zoom -- npx @kindflow/zoom-mcp-server
Then set your environment variables in ~/.claude/settings.json under the zoom server entry.
Manual setup
Add to ~/.claude/settings.json:
{
"mcpServers": {
"zoom": {
"command": "npx",
"args": ["@kindflow/zoom-mcp-server"],
"env": {
"ZOOM_ACCOUNT_ID": "your-account-id",
"ZOOM_CLIENT_ID": "your-client-id",
"ZOOM_CLIENT_SECRET": "your-client-secret",
"ZOOM_MODE": "readonly"
}
}
}
}
Set ZOOM_MODE to readwrite to enable creating meetings, sending chat messages, etc.
Available Tools
Transcripts (Read)
| Tool | Description |
|---|---|
zoom_list_recordings |
List cloud recordings for a user within a date range |
zoom_get_meeting_transcript |
Download and parse a meeting transcript into clean text |
zoom_get_meeting_summary |
Get AI-generated meeting summary (requires Zoom AI Companion) |
Meetings (Read)
| Tool | Description |
|---|---|
zoom_list_meetings |
List scheduled, live, upcoming, or previous meetings |
zoom_get_meeting |
Get meeting details including settings and join URL |
zoom_list_past_meeting_participants |
List who attended a past meeting |
Meetings (Write — requires readwrite mode)
| Tool | Description |
|---|---|
zoom_create_meeting |
Create a new meeting |
zoom_update_meeting |
Update an existing meeting |
zoom_delete_meeting |
Delete a meeting |
Users (Read)
| Tool | Description |
|---|---|
zoom_list_users |
List all users in the account |
zoom_get_user |
Get a specific user's details |
Team Chat (Read)
| Tool | Description |
|---|---|
zoom_list_channels |
List chat channels |
zoom_list_chat_messages |
List messages in a channel |
Team Chat (Write — requires readwrite mode)
| Tool | Description |
|---|---|
zoom_send_chat_message |
Send a message to a channel or user |
Environment Variables
| Variable | Required | Description |
|---|---|---|
ZOOM_ACCOUNT_ID |
Yes | Zoom Server-to-Server OAuth account ID |
ZOOM_CLIENT_ID |
Yes | Zoom app client ID |
ZOOM_CLIENT_SECRET |
Yes | Zoom app client secret |
ZOOM_MODE |
No | readonly (default) or readwrite |
Troubleshooting
sh: zoom-mcp-server: command not found when using npx
This happens with asdf version manager. Use one of these alternatives:
Install globally, then reference directly:
npm install -g @kindflow/zoom-mcp-server
{
"zoom": {
"command": "zoom-mcp-server",
"env": { ... }
}
}
Or point to the installed file with node:
{
"zoom": {
"command": "node",
"args": ["node_modules/@kindflow/zoom-mcp-server/dist/index.js"],
"env": { ... }
}
}
Development
git clone https://github.com/surajpratap/zoom-mcp-server.git
cd zoom-mcp-server
npm install
npm test # Run tests
npm run build # Compile TypeScript
npm run dev # Run with tsx (no build needed)
License
MIT
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。