Add Zoom MCP plugin - #194
Open
SamSokolin wants to merge 1 commit into
Open
Conversation
Zoom's remote MCP servers only support manual OAuth client registration (no DCR/CIMD), so this follows the Gong pattern: admin-registered CLIENT_ID/CLIENT_SECRET forwarded through MCP auth, plus a per-user OAuth login. Points at the main zoom server, which covers meeting search, cross-Zoom search, recordings, summaries, meeting assets, and main-server Zoom Docs tools. Docs, Whiteboard, and Team Chat servers are documented in the README rather than bundled. Co-authored-by: Cursor <cursoragent@cursor.com>
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes using high effort and found 1 potential issue.
Bugbot Autofix prepared a fix for the issue found in the latest run.
- ✅ Fixed: Plugin omitted from marketplace
- Added the missing
zoomentry to.cursor-plugin/marketplace.json(plus the matching root README table row), making the plugin installable and now covered byvalidate-plugins.mjs, which passes.
- Added the missing
Or push these changes by commenting:
@cursor push 8a8cefcaa2
Preview (8a8cefcaa2)
diff --git a/.cursor-plugin/marketplace.json b/.cursor-plugin/marketplace.json
--- a/.cursor-plugin/marketplace.json
+++ b/.cursor-plugin/marketplace.json
@@ -97,6 +97,11 @@
"name": "salesforce",
"source": "third_party/salesforce",
"description": "Connect Cursor to Salesforce via Salesforce Hosted MCP — query, search, create, update, and traverse records in your org."
+ },
+ {
+ "name": "zoom",
+ "source": "third_party/zoom",
+ "description": "Zoom MCP integration — search meetings and recordings, pull summaries and transcripts, and work with Zoom Docs."
}
]
}
diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -22,6 +22,7 @@
| `google-calendar` | [Google Calendar](third_party/google-calendar/) | Cursor | Productivity | Connect Cursor to Google Calendar via Google's remote MCP server — list calendars, search events, and create or update meetings. |
| `gong` | [Gong](third_party/gong/) | Cursor | Integrations | Gong MCP integration for revenue intelligence — account summaries, deal insights, and call briefs. |
| `salesforce` | [Salesforce](third_party/salesforce/) | Cursor | Integrations | Connect Cursor to Salesforce via Salesforce Hosted MCP — query, search, create, update, and traverse records in your org. |
+| `zoom` | [Zoom](third_party/zoom/) | Cursor | Integrations | Zoom MCP integration — search meetings and recordings, pull summaries and transcripts, and work with Zoom Docs. |
Author values match each plugin’s `plugin.json` `author.name` (Cursor lists `plugins@cursor.com` in the manifest).You can send follow-ups to the cloud agent here.
Reviewed by Cursor Bugbot for commit de158bb. Configure here.
| 2. Search for **Zoom**. | ||
| 3. Click **Install**, then set the client ID and secret (below) and complete the Zoom sign-in prompt. | ||
|
|
||
| Or run `/add-plugin zoom` in chat. |
There was a problem hiding this comment.
Plugin omitted from marketplace
High Severity · Logic Bug
The Zoom plugin isn't registered in .cursor-plugin/marketplace.json. This prevents its discovery via Settings → Plugins search or /add-plugin zoom, and means validate-plugins.mjs won't validate its schema.
Reviewed by Cursor Bugbot for commit de158bb. Configure here.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.



Adds
third_party/zoom, connecting Cursor to Zoom's official hosted MCP server for meeting search, recordings, summaries, and Zoom Docs.Why this needs client credentials
Zoom's remote MCP servers only support manual client registration — Dynamic Client Registration and Client ID Metadata Documents are explicitly rejected. So this can't be a URL-only plugin like Gmail; it follows the Gong pattern instead: an admin registers a Zoom General app, supplies
CLIENT_ID/CLIENT_SECRETas plugin variables, and each member completes their own OAuth login.{ "mcpServers": { "zoom": { "type": "http", "url": "https://mcp.zoom.us/mcp/zoom/streamable", "auth": { "CLIENT_ID": "${CLIENT_ID}", "CLIENT_SECRET": "${CLIENT_SECRET}" } } } }Which endpoint
Zoom's docs page shows
https://zoom.us/mcp/meeting/streamableas an example, but Zoom's own published plugin (zoom/zoom-plugin) registershttps://mcp.zoom.us/mcp/zoom/streamableas the main server. I used the latter since it covers meeting search, cross-Zoom search, recordings, summaries, meeting assets, and the main-server Zoom Docs tools in one server.Docs, Whiteboard, and Team Chat live on sibling paths (
/docs/,/whiteboard/,/team_chat/). Those are documented in the README rather than bundled — happy to add them if we'd rather ship all four.Please confirm
http://localhost:8787/callbackandhttps://www.cursor.com/agents/mcp/oauth/callback, copied from the Gong plugin. Correct if those are Cursor-wide, wrong if they're per-plugin.Testing
node scripts/validate-plugins.mjspasses. Not yet exercised against a live Zoom app — needs an admin-registered General app with the scopes from Zoom's tool docs.Made with Cursor