Back to Plugins

Zoom Plugin

Claude plugin for planning, building, and debugging Zoom integrations across REST APIs, SDKs, webhooks, bots, and MCP workflows.

developmentapirest
By anthropics
51Updated 1 month agoMIT

Installation

/plugin install zoom-plugin@claude-plugins-official

How to install

  1. Open Claude Code in your terminal
  2. Run the installation command above
  3. The plugin will be enabled automatically
  4. Use the plugin's features in your Claude Code sessions

Zoom Plugin

A Claude plugin for planning, building, and debugging Zoom integrations. It helps choose the right Zoom surface, shape implementations, debug failures, and route into the right Zoom references without making the user read the whole doc tree first.

Installation

Install this directory as a local Claude plugin. The plugin manifest is at .claude-plugin/plugin.json and the bundled Zoom MCP connectors are defined in .mcp.json.

Authentication path depends on the Claude product:

  • Claude Cowork: use the published Zoom connector in Claude's connector directory and complete OAuth there.
  • Claude Code: complete Zoom user-level OAuth yourself, export bearer tokens for the Zoom surfaces you want Claude to use, then reconnect the plugin and use /setup-zoom-mcp.

For Claude Code, export the bearer tokens before using the bundled MCP servers:

export ZOOM_MCP_ACCESS_TOKEN="your_zoom_user_oauth_access_token"
export ZOOM_DOCS_MCP_ACCESS_TOKEN="your_zoom_docs_mcp_access_token"
export ZOOM_WHITEBOARD_MCP_ACCESS_TOKEN="your_zoom_user_oauth_access_token"

Slash Workflows

Explicit slash workflows implemented as skills under skills/:

WorkflowDescription
/startStart with a Zoom app idea and get routed to the right product and build path
/setup-zoom-oauthChoose the auth model, scopes, and redirect flow for a Zoom app
/build-zoom-meeting-appBuild an embedded or managed Zoom meeting flow
/build-zoom-botBuild bots, recorders, and real-time meeting processors
/debug-zoomTriage a broken Zoom integration and isolate the failing layer
/setup-zoom-mcpDecide when Zoom MCP fits and set up a safe Claude workflow
/build-zoom-rest-api-appRoute into Zoom REST endpoints, scopes, and resource patterns
/build-zoom-meeting-sdk-appRoute into embedded Zoom meeting implementation details
/build-zoom-video-sdk-appRoute into custom video-session implementation details
/setup-zoom-webhooksSet up Zoom webhook subscriptions, signature verification, and handlers
/setup-zoom-websocketsSet up Zoom WebSocket event delivery when it fits better than webhooks
/build-zoom-team-chat-appBuild Team Chat user or chatbot integrations
/build-zoom-phone-integrationBuild Zoom Phone integrations around Smart Embed, APIs, and events
/build-zoom-contact-center-appBuild Contact Center app, web, or native integrations
/build-zoom-virtual-agentBuild Virtual Agent web or mobile wrapper integrations

Internal Routing Skills

These remain in the plugin as automatic routing helpers, but they are no longer part of the public slash-command surface:

Deep References

The plugin also keeps the original Zoom product-specific reference library under skills/. These are supporting references, not the primary entry surface:

Example Workflows

Starting from a Zoom app idea

/start Build an internal meeting assistant that joins calls, extracts action items, and stores summaries

Planning a new app

/start Build a React app that lets customers schedule and join Zoom meetings from our product

Debugging a broken webhook

/debug-zoom My Zoom webhook signature verification fails in production but not locally

Designing an MCP flow

/setup-zoom-mcp I want Claude to search meetings, pull recording resources, and create follow-up docs

Connectors

See CONNECTORS.md. The plugin works standalone from the bundled skills, and gets supercharged when Claude can use the bundled Zoom MCP servers from .mcp.json.

The bundled MCP servers are the main Zoom MCP server, Zoom Docs MCP server, and Zoom Whiteboard MCP server. Team Chat MCP is documented as an optional child skill under skills/zoom-mcp/team-chat/, but is not registered in .mcp.json by default.

Cross-Platform Notes

This repo is packaged first as a Claude plugin, but it also includes AGENTS.md for agent ecosystems that use a repo-level discovery file. The reusable core remains the skills/ tree and its SKILL.md files.

Structure

Zoom Plugin/
├── .claude-plugin/plugin.json
├── .mcp.json
├── CONNECTORS.md
├── skills/
│   ├── plan-zoom-product/
│   ├── plan-zoom-integration/
│   ├── debug-zoom/
│   ├── setup-zoom-mcp/
│   ├── scribe/
│   ├── summarizer/
│   ├── translator/
│   ├── start/
│   ├── choose-zoom-approach/
│   ├── setup-zoom-oauth/
│   ├── build-zoom-meeting-app/
│   ├── build-zoom-bot/
│   ├── design-mcp-workflow/
│   ├── debug-zoom-integration/
│   └── ... existing Zoom reference skills
└── README.md

License

MIT

View source on GitHub