by prathamesh0901
Easily manage Zoom meetings with Zoom API integration—create, update, delete, and fetch events without navigating the Zo
Manages Zoom meetings through API calls, letting you create, update, delete and retrieve meetings without using the Zoom web interface.
Zoom is a community-built MCP server published by prathamesh0901 that provides AI assistants with tools and capabilities via the Model Context Protocol. Easily manage Zoom meetings with Zoom API integration—create, update, delete, and fetch events without navigating the Zo It is categorized under productivity, communication.
You can install Zoom in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server runs locally on your machine via the stdio transport.
MIT
Zoom is released under the MIT license. This is a permissive open-source license, meaning you can freely use, modify, and distribute the software.
Add new capabilities to Claude beyond text generation
Example
Access external data sources, execute code, interact with tools and services
Transform Claude from chatbot to action-taking agent
Provide Claude with access to relevant context and data
Example
Load project documentation, access knowledge bases, query databases
Get more accurate, context-aware responses
Automate multi-step workflows combining AI and external tools
Example
Research → Summarize → Create document → Send notification
Complete complex tasks end-to-end without manual steps
Share your MCP server with the developer community
Zoom has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.
According to our notes, Zoom benefits from clear Model Context Protocol framing — fewer ambiguous “AI plugin” claims.
We evaluated Zoom against two servers with overlapping tools; this profile had the clearer scope statement.
I recommend Zoom for teams standardizing on MCP; the explainx.ai page compares cleanly with sibling servers.
We evaluated Zoom against two servers with overlapping tools; this profile had the clearer scope statement.
Zoom has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.
We wired Zoom into a staging workspace; the listing’s GitHub and npm pointers saved time versus hunting across READMEs.
Zoom is a well-scoped MCP server in the explainx.ai directory — install snippets and categories matched our Claude Code setup.
Strong directory entry: Zoom surfaces stars and publisher context so we could sanity-check maintenance before adopting.
Useful MCP listing: Zoom is the kind of server we cite when onboarding engineers to host + tool permissions.
showing 1-10 of 30
A Model Context Protocol (MCP) server for managing Zoom meetings via Claude or Cursor.
This server enables you to create, update, delete, and retrieve Zoom meetings using a standardized MCP interface, making it easy to integrate with AI tools like Claude and Cursor.
To use this MCP server with Claude or Cursor, add the following to your MCP config file( Claude: claude_desktop_config.json | Cursor: .cursor/mcp.json ):
{
"mcpServers": {
"zoom": {
"command": "npx",
"args": [
"-y", "@prathamesh0901/zoom-mcp-server"
],
"env": {
"ZOOM_ACCOUNT_ID": "Your Zoom Account ID",
"ZOOM_CLIENT_ID": "Your Zoom Client ID",
"ZOOM_CLIENT_SECRET": "Your Zoom Client Secret"
}
}
}
}
🛡️ Replace the credentials with your Zoom App credentials created on the Zoom Marketplace.
| Tool | Description |
|---|---|
get_meetings | Retrieve all active Zoom meetings |
create_meeting | Create a new Zoom meeting |
update_meeting | Update an existing meeting |
delete_meeting | Delete a Zoom meeting |
Each tool is implemented using Zod schema validation for parameters.
Clone the repo:
git clone https://github.com/Prathamesh0901/zoom-mcp-server.git
cd zoom-mcp-server
Install dependencies:
npm install
Run in development mode:
npm run dev
Build for production:
npm run build
Run the compiled server:
npm start
Contributions are welcome and appreciated! To contribute:
git checkout -b feature/your-feature-name
git commit -m "Add some feature"
This project is licensed under the MIT License.
Prerequisites
Time Estimate
15-60 minutes depending on server complexity
Steps
Troubleshooting
✓ Do
✗ Don't
💡 Pro Tips
Architecture
Model Context Protocol standardizes how AI hosts (Claude, Cursor) communicate with external tools and data sources through server implementations.
Protocols
Compatibility
✓ Use when
Use when you need Claude to access external data, execute actions, or integrate with tools. Best for extending AI capabilities beyond conversation.
✗ Avoid when
Avoid when native integrations exist (use official APIs directly), for real-time critical systems, or when security/compliance requires zero external dependencies.