{"id":50254096,"url":"https://github.com/zoom/zoom-plugin","last_synced_at":"2026-05-27T03:40:12.844Z","repository":{"id":348942500,"uuid":"1199261088","full_name":"zoom/zoom-plugin","owner":"zoom","description":"Claude plugin for planning, building, and debugging Zoom integrations across REST APIs, SDKs, webhooks, bots, and MCP workflows.","archived":false,"fork":false,"pushed_at":"2026-05-21T12:08:49.000Z","size":1544,"stargazers_count":3,"open_issues_count":1,"forks_count":1,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-27T03:39:49.465Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/zoom.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":"AGENTS.md","dco":null,"cla":null}},"created_at":"2026-04-02T07:22:11.000Z","updated_at":"2026-05-21T12:08:53.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/zoom/zoom-plugin","commit_stats":null,"previous_names":["zoom/zoom-plugin-for-claude"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/zoom/zoom-plugin","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zoom%2Fzoom-plugin","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zoom%2Fzoom-plugin/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zoom%2Fzoom-plugin/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zoom%2Fzoom-plugin/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zoom","download_url":"https://codeload.github.com/zoom/zoom-plugin/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zoom%2Fzoom-plugin/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33549782,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-05-27T02:00:06.184Z","response_time":53,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-05-27T03:40:10.613Z","updated_at":"2026-05-27T03:40:12.835Z","avatar_url":"https://github.com/zoom.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Zoom Plugin\n\nA 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.\n\n## Installation\n\nInstall this directory as a local Claude plugin. The plugin manifest is at [`.claude-plugin/plugin.json`](.claude-plugin/plugin.json) and the bundled Zoom MCP connectors are defined in [`.mcp.json`](.mcp.json).\n\nAuthentication path depends on the Claude product:\n\n- **Claude Cowork**: use the published Zoom connector in Claude's connector directory and complete OAuth there.\n- **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`.\n\nFor Claude Code, export the bearer tokens before using the bundled MCP servers:\n\n```bash\nexport ZOOM_MCP_ACCESS_TOKEN=\"your_zoom_user_oauth_access_token\"\nexport ZOOM_DOCS_MCP_ACCESS_TOKEN=\"your_zoom_docs_mcp_access_token\"\nexport ZOOM_WHITEBOARD_MCP_ACCESS_TOKEN=\"your_zoom_user_oauth_access_token\"\n```\n\n## Slash Workflows\n\nExplicit slash workflows implemented as skills under `skills/`:\n\n| Workflow | Description |\n|---|---|\n| [`/start`](skills/start/SKILL.md) | Start with a Zoom app idea and get routed to the right product and build path |\n| [`/setup-zoom-oauth`](skills/setup-zoom-oauth/SKILL.md) | Choose the auth model, scopes, and redirect flow for a Zoom app |\n| [`/build-zoom-meeting-app`](skills/build-zoom-meeting-app/SKILL.md) | Build an embedded or managed Zoom meeting flow |\n| [`/build-zoom-bot`](skills/build-zoom-bot/SKILL.md) | Build bots, recorders, and real-time meeting processors |\n| [`/debug-zoom`](skills/debug-zoom/SKILL.md) | Triage a broken Zoom integration and isolate the failing layer |\n| [`/setup-zoom-mcp`](skills/setup-zoom-mcp/SKILL.md) | Decide when Zoom MCP fits and set up a safe Claude workflow |\n| [`/build-zoom-rest-api-app`](skills/rest-api/SKILL.md) | Route into Zoom REST endpoints, scopes, and resource patterns |\n| [`/build-zoom-meeting-sdk-app`](skills/meeting-sdk/SKILL.md) | Route into embedded Zoom meeting implementation details |\n| [`/build-zoom-video-sdk-app`](skills/video-sdk/SKILL.md) | Route into custom video-session implementation details |\n| [`/setup-zoom-webhooks`](skills/webhooks/SKILL.md) | Set up Zoom webhook subscriptions, signature verification, and handlers |\n| [`/setup-zoom-websockets`](skills/websockets/SKILL.md) | Set up Zoom WebSocket event delivery when it fits better than webhooks |\n| [`/build-zoom-team-chat-app`](skills/team-chat/SKILL.md) | Build Team Chat user or chatbot integrations |\n| [`/build-zoom-phone-integration`](skills/phone/SKILL.md) | Build Zoom Phone integrations around Smart Embed, APIs, and events |\n| [`/build-zoom-contact-center-app`](skills/contact-center/SKILL.md) | Build Contact Center app, web, or native integrations |\n| [`/build-zoom-virtual-agent`](skills/virtual-agent/SKILL.md) | Build Virtual Agent web or mobile wrapper integrations |\n\n## Internal Routing Skills\n\nThese remain in the plugin as automatic routing helpers, but they are no longer part of the public slash-command surface:\n\n- [`start`](skills/start/SKILL.md)\n- [`plan-zoom-product`](skills/plan-zoom-product/SKILL.md)\n- [`plan-zoom-integration`](skills/plan-zoom-integration/SKILL.md)\n- [`choose-zoom-approach`](skills/choose-zoom-approach/SKILL.md)\n- [`design-mcp-workflow`](skills/design-mcp-workflow/SKILL.md)\n- [`debug-zoom-integration`](skills/debug-zoom-integration/SKILL.md)\n\n## Deep References\n\nThe plugin also keeps the original Zoom product-specific reference library under `skills/`. These are supporting references, not the primary entry surface:\n\n- [`skills/general/`](skills/general/)\n- [`skills/rest-api/`](skills/rest-api/)\n- [`skills/meeting-sdk/`](skills/meeting-sdk/)\n- [`skills/video-sdk/`](skills/video-sdk/)\n- [`skills/webhooks/`](skills/webhooks/)\n- [`skills/websockets/`](skills/websockets/)\n- [`skills/oauth/`](skills/oauth/)\n- [`skills/team-chat/`](skills/team-chat/)\n- [`skills/scribe/`](skills/scribe/)\n- [`skills/summarizer/`](skills/summarizer/)\n- [`skills/translator/`](skills/translator/)\n- [`skills/zoom-mcp/`](skills/zoom-mcp/)\n- [`skills/zoom-mcp/team-chat/`](skills/zoom-mcp/team-chat/)\n\n## Example Workflows\n\n### Starting from a Zoom app idea\n\n```text\n/start Build an internal meeting assistant that joins calls, extracts action items, and stores summaries\n```\n\n### Planning a new app\n\n```text\n/start Build a React app that lets customers schedule and join Zoom meetings from our product\n```\n\n### Debugging a broken webhook\n\n```text\n/debug-zoom My Zoom webhook signature verification fails in production but not locally\n```\n\n### Designing an MCP flow\n\n```text\n/setup-zoom-mcp I want Claude to search meetings, pull recording resources, and create follow-up docs\n```\n\n## Connectors\n\nSee [CONNECTORS.md](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`](.mcp.json).\n\nThe 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/`](skills/zoom-mcp/team-chat/), but is not registered in [`.mcp.json`](.mcp.json) by default.\n\n## Cross-Platform Notes\n\nThis repo is packaged first as a Claude plugin, but it also includes [AGENTS.md](AGENTS.md) for agent ecosystems that use a repo-level discovery file. The reusable core remains the `skills/` tree and its `SKILL.md` files.\n\n## Structure\n\n```text\nZoom Plugin/\n├── .claude-plugin/plugin.json\n├── .mcp.json\n├── CONNECTORS.md\n├── skills/\n│   ├── plan-zoom-product/\n│   ├── plan-zoom-integration/\n│   ├── debug-zoom/\n│   ├── setup-zoom-mcp/\n│   ├── scribe/\n│   ├── summarizer/\n│   ├── translator/\n│   ├── start/\n│   ├── choose-zoom-approach/\n│   ├── setup-zoom-oauth/\n│   ├── build-zoom-meeting-app/\n│   ├── build-zoom-bot/\n│   ├── design-mcp-workflow/\n│   ├── debug-zoom-integration/\n│   └── ... existing Zoom reference skills\n└── README.md\n```\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzoom%2Fzoom-plugin","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzoom%2Fzoom-plugin","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzoom%2Fzoom-plugin/lists"}