zoom-mcp
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChineseZoom MCP
Zoom MCP
Guidance for the bundled Zoom MCP connector in this Claude plugin. Prefer or setup-zoom-mcp first, then route here for tool-surface details, auth expectations, and MCP-specific constraints.
design-mcp-workflow本Claude插件中捆绑的Zoom MCP连接器使用指南。请优先使用或setup-zoom-mcp,之后可跳转至此处查看工具层面详情、认证要求及MCP特定约束。
design-mcp-workflowZoom MCP Server
Zoom MCP Server
This plugin bundles Zoom's hosted MCP server at for AI-agent access to:
mcp-us.zoom.us- semantic meeting search
- meeting-linked asset retrieval
- recording resource retrieval
Zoom Docs are exposed through a separate bundled server:
- at
zoom-docs-mcpmcp.zoom.us - purpose-built for Zoom Docs creation and retrieval
Current tool names from the main Zoom MCP server:
get_meeting_assetssearch_meetingsget_recording_resourcerecordings_list
Some MCP clients namespace server tools in the UI, for example .
Treat the raw tool names above as authoritative.
zoom-mcp:recordings_listZoom Docs-specific MCP work should use the dedicated server.
zoom-docs-mcpWhiteboard-specific MCP work is covered by the dedicated skill
whiteboard/SKILL.md.
本插件捆绑了Zoom托管的MCP服务器,可让AI Agent访问以下能力:
mcp-us.zoom.us- 语义会议搜索
- 会议关联资产检索
- 录制文件资源检索
Zoom Docs通过单独的捆绑服务器提供服务:
- 部署在的
mcp.zoom.uszoom-docs-mcp - 专为Zoom Docs的创建和检索设计
主Zoom MCP服务器当前提供的工具名称:
get_meeting_assetssearch_meetingsget_recording_resourcerecordings_list
部分MCP客户端会在UI中对服务器工具添加命名空间,例如。以上原始工具名称为权威定义。
zoom-mcp:recordings_listZoom Docs专属的MCP操作请使用专用的服务器。
zoom-docs-mcp白板专属的MCP操作由专用技能whiteboard/SKILL.md提供支持。
Quick Start
快速开始
1. Export the token expected by the bundled connector:
bash
export ZOOM_MCP_ACCESS_TOKEN="your_zoom_user_oauth_access_token"2. Enable or restart the plugin so Claude restarts the bundled MCP server definition.
3. Verify discovery:
- Confirm the client can see ,
recordings_list,search_meetings, andget_meeting_assets.get_recording_resource - If the client exposes raw protocol inspection, is the authoritative discovery source.
tools/list - The current catalog is documented in references/tools.md.
4. Run the first useful call:
text
recordings_list
userId: "me"
from: "2026-03-01"
to: "2026-03-06"
page_size: 101. 导出捆绑连接器所需的令牌:
bash
export ZOOM_MCP_ACCESS_TOKEN="your_zoom_user_oauth_access_token"2. 启用或重启插件,让Claude重新加载捆绑的MCP服务器定义。
3. 验证服务发现:
- 确认客户端可以识别、
recordings_list、search_meetings和get_meeting_assets。get_recording_resource - 如果客户端支持原始协议检查,是权威的服务发现来源。
tools/list - 当前的工具目录记录在references/tools.md中。
4. 执行首次有效调用:
text
recordings_list
userId: "me"
from: "2026-03-01"
to: "2026-03-06"
page_size: 10Critical Notes
重要注意事项
1. User OAuth is the documented execution path
Use a General app with user-level OAuth as the execution path for Zoom MCP
tool use in this plugin. Do not rely on Server-to-Server OAuth as a supported MCP auth model here.
2. Zoom MCP uses MCP-specific granular scopes
The Zoom MCP scope set is not the same as the older broad REST scopes.
The key scopes for the main Zoom MCP server are:
- — Search across Zoom Meeting, Zoom Chat, and Zoom Doc, returning the most relevant results based on the query
ai_companion:read:search - — Search and view meetings
meeting:read:search - — View a meeting's assets
meeting:read:assets - — Lists all cloud recordings for a user.
cloud_recording:read:list_user_recordings - — read recording content scope
cloud_recording:read:content - — Create a new file by import
docs:write:import - — Read file content in Markdown format
docs:read:export
For Zoom Docs MCP specifically, the official docs page shows these granular scopes for the documented tools:
- — Create a new file by import
docs:write:import - — Read file content in Markdown format
docs:read:export
3. AI Companion features are feature prerequisites, not scope substitutes
Semantic meeting search, meeting assets, and recording-content retrieval depend on account
features such as Smart Recording and Meeting Summary for useful results. These feature
settings do not replace the required OAuth scopes.
4. Whiteboard is a separate MCP surface
The Zoom MCP endpoint and the Whiteboard MCP endpoint are separate. Route Whiteboard-specific
requests to whiteboard/SKILL.md.
5. Use REST for deterministic meeting CRUD
The current Zoom MCP tool surface does not expose deterministic
meeting create, update, or delete tools. If the user needs explicit meeting CRUD operations,
route to ../rest-api/SKILL.md.
1. 用户OAuth是官方指定的执行路径
请使用带有用户级OAuth的通用应用作为本插件中Zoom MCP工具调用的执行路径。不支持服务端到服务端OAuth作为MCP认证模型。
2. Zoom MCP使用MCP专属的细粒度权限范围
Zoom MCP的权限范围集与旧的广泛REST权限范围不同。主Zoom MCP服务器的核心权限范围包括:
- — 跨Zoom会议、Zoom聊天和Zoom Doc搜索,根据查询返回最相关的结果
ai_companion:read:search - — 搜索和查看会议
meeting:read:search - — 查看会议资产
meeting:read:assets - — 列出用户的所有云录制文件
cloud_recording:read:list_user_recordings - — 读取录制内容的权限范围
cloud_recording:read:content - — 通过导入创建新文件
docs:write:import - — 读取Markdown格式的文件内容
docs:read:export
针对Zoom Docs MCP,官方文档页面列出了其工具对应的细粒度权限范围:
- — 通过导入创建新文件
docs:write:import - — 读取Markdown格式的文件内容
docs:read:export
3. AI Companion功能是前置要求,不能替代权限范围
语义会议搜索、会议资产和录制内容检索依赖于账户的智能录制和会议摘要等功能才能返回有效结果。这些功能设置不能替代所需的OAuth权限范围。
4. 白板是独立的MCP服务面
Zoom MCP端点和白板MCP端点是相互独立的。请将白板专属请求路由到whiteboard/SKILL.md。
5. 确定性的会议CRUD操作请使用REST
当前Zoom MCP的工具能力不提供确定性的会议创建、更新或删除工具。如果用户需要明确的会议CRUD操作,请路由到../rest-api/SKILL.md。
Server Endpoints
服务器端点
| Transport | URL |
|---|---|
| Streamable HTTP (recommended) | |
| SSE (fallback) | |
Dedicated Docs MCP server:
| Transport | URL |
|---|---|
| Streamable HTTP (recommended) | |
| SSE (fallback) | |
Dedicated Whiteboard MCP skill:
- whiteboard/SKILL.md
| 传输协议 | URL |
|---|---|
| 可流式HTTP(推荐) | |
| SSE(备选) | |
专用Docs MCP服务器:
| 传输协议 | URL |
|---|---|
| 可流式HTTP(推荐) | |
| SSE(备选) | |
专用白板MCP技能:
- whiteboard/SKILL.md
Search and Retrieval Model
搜索与检索模型
search_meetingsTwo result families matter most:
- Recap-oriented results: AI summary, meeting-linked documents, recordings, and related assets
- Recording-oriented results: cloud recording references and transcript-capable resources
Use examples/transcript-retrieval.md for the main retrieval
workflow.
search_meetings最核心的两类结果:
- 摘要类结果:AI总结、会议关联文档、录制文件及相关资产
- 录制类结果:云录制引用和支持转录的资源
主检索工作流可参考examples/transcript-retrieval.md。
Tool Catalog
工具目录
| Tool | Key Parameters | Required Scope |
|---|---|---|
| | |
| | |
| | |
| | |
* Required parameter
Full parameter and output guidance: references/tools.md
| 工具 | 核心参数 | 所需权限范围 |
|---|---|---|
| | |
| | |
| | |
| | |
* 为必填参数
完整的参数和输出说明:references/tools.md
Key Workflows
核心工作流
Search meeting content, then retrieve assets:
text
search_meetings
q: "Q4 planning discussion"
from: "2026-03-01"
to: "2026-03-06"
→ choose a returned meeting
→ get_meeting_assets meetingId: "MEETING_ID_OR_UUID"List recordings, then retrieve recording resources:
text
recordings_list
userId: "me"
from: "2026-03-01"
to: "2026-03-06"
→ choose a recording target
→ get_recording_resource meetingId: "MEETING_UUID_OR_RECORDING_ID"Create or fetch a Zoom Doc:
- use the dedicated server rather than the main
zoom-docs-mcpserverzoom-mcp - official documented tools on the Zoom Docs MCP page are:
create_file_with_contentget_file_content
搜索会议内容,然后检索资产:
text
search_meetings
q: "Q4 planning discussion"
from: "2026-03-01"
to: "2026-03-06"
→ 选择返回的某个会议
→ get_meeting_assets meetingId: "MEETING_ID_OR_UUID"列出录制文件,然后检索录制资源:
text
recordings_list
userId: "me"
from: "2026-03-01"
to: "2026-03-06"
→ 选择目标录制文件
→ get_recording_resource meetingId: "MEETING_UUID_OR_RECORDING_ID"创建或获取Zoom Doc:
- 请使用专用的服务器而非主
zoom-docs-mcp服务器zoom-mcp - Zoom Docs MCP页面官方记录的工具为:
create_file_with_contentget_file_content
Error Reference
错误参考
| Code | Meaning | Fix |
|---|---|---|
| Missing or rejected bearer token at the endpoint | Set |
| Token expired, malformed, or missing required scopes | Refresh OAuth token and verify the MCP-specific scopes |
| Requested tool name is not exposed by the active MCP server | Re-run |
| Possible downstream resource-not-found response | Re-discover the target with |
Full error reference: references/error-codes.md
| 错误码 | 含义 | 解决方案 |
|---|---|---|
| 端点缺少Bearer令牌或令牌被拒绝 | 设置 |
| 令牌过期、格式错误或缺少所需权限范围 | 刷新OAuth令牌并验证MCP专属权限范围是否正确配置 |
| 请求的工具名称未被当前激活的MCP服务器暴露 | 重新执行 |
| 可能是下游资源未找到的响应 | 使用 |
完整错误参考:references/error-codes.md
Documentation
文档
Concepts
概念
- concepts/mcp-architecture.md — MCP protocol, hosted endpoints, discovery, and capability model
- concepts/oauth-setup.md — OAuth app creation, MCP-specific scopes, AI Companion prerequisites, token lifecycle
- concepts/mcp-architecture.md — MCP协议、托管端点、服务发现和能力模型
- concepts/oauth-setup.md — OAuth应用创建、MCP专属权限范围、AI Companion前置要求、令牌生命周期
Examples
示例
- examples/transcript-retrieval.md — Search/assets and recording-resource workflows
- examples/create-zoom-doc.md — Verified Zoom Docs creation flow
- examples/search-and-act.md — Search, inspect assets, and hand off CRUD work to REST when needed
- examples/meeting-lifecycle.md — Why meeting CRUD belongs in REST, plus the MCP-to-REST handoff pattern
- examples/transcript-retrieval.md — 搜索/资产和录制资源工作流
- examples/create-zoom-doc.md — 经过验证的Zoom Docs创建流程
- examples/search-and-act.md — 搜索、检查资产,必要时将CRUD工作移交到REST
- examples/meeting-lifecycle.md — 为什么会议CRUD适合通过REST实现,以及MCP到REST的移交模式
References
参考
- references/tools.md — Current Zoom MCP tool reference
- references/error-codes.md — MCP and Zoom API errors with fixes
- whiteboard/SKILL.md — Dedicated Whiteboard MCP skill
- references/tools.md — 当前Zoom MCP工具参考
- references/error-codes.md — MCP和Zoom API错误及解决方案
- whiteboard/SKILL.md — 专用白板MCP技能
Troubleshooting
故障排查
- troubleshooting/common-errors.md — Scope failures, endpoint mixups, search/recording issues
- troubleshooting/common-errors.md — 权限失败、端点混淆、搜索/录制问题
Operations
运维
- RUNBOOK.md — 5-minute preflight and debugging checklist
- RUNBOOK.md — 5分钟预检查和调试清单
Related Skills
相关技能
- zoom-rest-api — Deterministic REST API access, including meeting CRUD
- zoom-oauth — OAuth implementation patterns
- zoom-webhooks — Event-driven recording and meeting workflows
- zoom-rtms — Live media and transcript streams during active meetings
- zoom-rest-api — 确定性REST API访问,包括会议CRUD
- zoom-oauth — OAuth实现模式
- zoom-webhooks — 事件驱动的录制和会议工作流
- zoom-rtms — 活跃会议期间的实时媒体和转录流