为 Zoom 会议、录制、素材与转录的 MCP 接入提供规划与排障指导。
该技能材料主要是面向 Zoom MCP 连接器的说明文档,并非可直接执行代码;但 README 明确要求提供 Zoom 用户 OAuth 访问令牌,并连接 Zoom 官方 MCP 端点访问会议、录音与相关资产,因此整体属低到中等风险、以凭证和业务数据访问为主要关注点。
README 明确要求设置 ZOOM_MCP_ACCESS_TOKEN,且为 Zoom 用户级 OAuth 访问令牌,具备读取会议搜索、会议资产、云录音及部分 Docs 相关 scope;令牌本身属于敏感凭证,如被日志、环境变量或进程暴露会导致业务数据被滥用,但材料未见明显索取无关凭证的红旗。
材料写明会连接 Zoom 托管的 MCP 服务器 mcp-us.zoom.us,另有 Docs 服务器 mcp.zoom.us;按其声明用途,会议查询、录音列表、资产检索等请求及相关用户数据会发送到 Zoom 官方端点,属于该类连接器的常规外发,未见向不明第三方域名传输的证据。
系统检查项标注为 prompt-only,当前提供内容是技能说明与使用指引,未展示可在本机任意执行代码、安装二进制或申请系统级权限的实现细节;文中虽提到“重启插件/服务器定义”,但不足以证明存在超出常规的本地执行风险。
根据 README,工具面可访问会议搜索结果、会议资产、录音资源、录音列表,并涉及部分 Zoom Docs 读写 scope;这意味着可接触会议内容、录音及文档数据,属于与声明功能一致的业务数据访问,未见要求读取本地文件系统或超范围系统资源。
正面因素是来源为 GitHub 且标注开源,可一定程度审计;但仓库星标为 0、许可证未声明、维护状态未知,且该技能本身引用的是“bundled Zoom hosted MCP server”,实际服务端实现不完全由本地仓库覆盖,因此供应链透明度一般,建议在采用前补充核验仓库活跃度与服务端文档。
复制安装指令,让 AI 自动完成配置 · 推荐新手
请帮我安装 askskill 上的 "zoom-mcp" 技能: 1. 下载 https://raw.githubusercontent.com/anthropics/knowledge-work-plugins/main/partner-built/zoom-plugin/skills/zoom-mcp/SKILL.md 2. 保存为 ~/.claude/skills/zoom-mcp/SKILL.md 3. 装好后重载技能,告诉我可以用了
我想在 MCP 工作流里接入 Zoom 会议、录制文件和转录内容。请帮我规划应该使用哪些 Zoom MCP 连接器、典型调用顺序,以及需要注意的权限与限制。
一份清晰的接入方案,说明适用连接器、调用步骤、权限要求和常见限制。
我的 MCP 工作流可以读取 Zoom 会议信息,但获取云录制文件总是失败。请帮我分析可能原因,并给出按优先级排序的排查步骤。
一份排障清单,涵盖认证、权限、资源范围、连接器选择和错误定位建议。
请判断以下需求是否应该走 zoom-mcp:读取会议转录、获取 Zoom Docs 文档内容、操作 Whiteboard 白板。请分别说明应路由到哪个 MCP 服务。
对不同请求的路由建议,明确哪些使用 zoom-mcp,哪些应转到 Docs 或 whiteboard 专用服务。
Guidance for the bundled Zoom MCP connector in this Claude plugin. Prefer design-mcp-workflow or setup-zoom-mcp first, then route here for tool-surface details, auth expectations, and MCP-specific constraints.
This plugin bundles Zoom's hosted MCP server at mcp-us.zoom.us for AI-agent access to:
Zoom Docs are exposed through a separate bundled server:
zoom-docs-mcp at mcp.zoom.usCurrent tool names from the main Zoom MCP server:
get_meeting_assetssearch_meetingsget_recording_resourcerecordings_listSome MCP clients namespace server tools in the UI, for example zoom-mcp:recordings_list.
Treat the raw tool names above as authoritative.
Zoom Docs-specific MCP work should use the dedicated zoom-docs-mcp server.
Whiteboard-specific MCP work is covered by the dedicated skill whiteboard/SKILL.md.
1. Export the token expected by the bundled connector:
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:
recordings_list, search_meetings, get_meeting_assets,
and get_recording_resource.tools/list is the authoritative discovery source.4. Run the first useful call:
recordings_list
userId: "me"
from: "2026-03-01"
to: "2026-03-06"
page_size: 10
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:
ai_companion:read:search — Search across Zoom Meeting, Zoom Chat, and Zoom Doc, returning the most relevant results based on the querymeeting:read:search — Search and view meetingsmeeting:read:assets — View a meeting's assetscloud_recording:read:list_user_recordings — Lists all cloud recordings for a user.cloud_recording:read:content — read recording content scopedocs:write:import — Create a new file by importdocs:read:export — Read file content in Markdown formatFor Zoom Docs MCP specifically, the official docs page shows these granular scopes for the documented tools:
docs:write:import — Create a new file by importdocs:read:export — Read file content in Markdown format3. 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.
| Transport | URL |
|---|---|
| Streamable HTTP (recommended) | https://mcp-us.zoom.us/mcp/zoom/streamable |
| SSE (fallback) | https://mcp-us.zoom.us/mcp/zoom/sse |
Dedicated Docs MCP server:
| Transport | URL |
|---|
…
在分享分析结论前,检查方法、计算、偏差与结论是否可靠
生成人员规模、流失率、多元化与组织健康等人力分析报告
帮助识别、分类并排序技术债,明确重构与代码健康改进优先级。
帮助你为具体产品场景选择合适的 Zoom 能力层,并清晰说明技术取舍。
根据已批准内容简报,生成社媒设计、文案与发布排期并待你逐步审批。
根据受众与汇报节奏生成清晰的项目进展与干系人更新
通过 MCP 统一管理 Zoom 用户、会议、网络研讨会与录制内容。
帮助判断何时采用 Zoom MCP,并为 Claude 制定安全接入方案。
通过 Zoom API 统一管理会议、录制、用户、网络研讨会与报表等协作事项。
帮助你为 Claude 设计 Zoom MCP 工作流并划分 MCP 与 API 职责
提供 Zoom 平台通用参考,帮助梳理认证、权限、应用模型与接口选型。
帮助团队在 Zammad 中处理共享草稿、回复校验与本地化邮件流程。