Replace "Connect to [tool]" openers, em-dash asides, and MCP server boilerplate with brief verb-first copy in plugin and marketplace manifests. Resync the README table that mirrors them, adding rows that had drifted out (teaching, ralph-loop, playwright, github, zoom, clay). Also refresh the stale read-only X marketplace copy and clean em-dashes from the Salesforce server URL help text. Co-authored-by: Cursor <cursoragent@cursor.com>
Zoom
Cursor plugin that connects agents to Zoom through Zoom's official hosted Model Context Protocol servers.
Search meetings and recordings, pull summaries and transcripts, and work with Zoom Docs from chat.
Install
- Open Cursor Settings → Plugins.
- Search for Zoom.
- Click Install, then set the client ID and secret (below) and complete the Zoom sign-in prompt.
Or run /add-plugin zoom in chat.
MCP
{
"mcpServers": {
"zoom": {
"type": "http",
"url": "https://mcp.zoom.us/mcp/zoom/streamable",
"auth": {
"CLIENT_ID": "${CLIENT_ID}",
"CLIENT_SECRET": "${CLIENT_SECRET}"
}
}
}
}
Setup
Zoom's MCP servers only support manual client registration — Dynamic Client Registration and Client ID Metadata Documents are not accepted — so an administrator has to register Cursor as a Zoom app before anyone can connect.
- A Zoom admin or developer logs into the Zoom App Marketplace and creates a General app under Develop → Build app.
- Add the scopes listed for each tool in Zoom's MCP server docs. Meeting search and recordings need
ai_companion:read:searchfor cross-Zoom search. - Under Basic Information → OAuth Information, register both redirect URIs:
- Desktop:
http://localhost:8787/callback - Web and Cloud Agents:
https://www.cursor.com/agents/mcp/oauth/callback
- Desktop:
- In Dashboard → Plugins → Configure, set Zoom Client ID and Zoom Client Secret from that app's App Credentials.
- Complete the Zoom OAuth login when Cursor prompts.
Each member needs a license for the Zoom products they want to reach. On a team marketplace an admin sets the client ID and secret once for everyone; each member still completes their own Zoom OAuth login, so tool calls run with that member's Zoom permissions.
Other Zoom MCP servers
Zoom splits tools across product-specific servers. This plugin ships the main zoom server, which covers meeting search, cross-Zoom search, recordings, summaries, meeting assets, and the main-server Zoom Docs tools. To reach the others, add them to mcp.json with the same auth block:
| Server | URL |
|---|---|
| Zoom Docs | https://mcp.zoom.us/mcp/docs/streamable |
| Whiteboard | https://mcp.zoom.us/mcp/whiteboard/streamable |
| Team Chat | https://mcp.zoom.us/mcp/team_chat/streamable |
Zoom also exposes SSE variants at the same paths with /sse instead of /streamable.
Docs
- Zoom MCP overview: https://developers.zoom.us/docs/mcp/servers/
- Connecting MCP clients: https://developers.zoom.us/docs/mcp/servers/connect-to-zoom-mcp-servers/
License
MIT