by Prathamesh0901
Create, update, retrieve, and delete Zoom meetings through natural language commands using Claude or Cursor.
Manages Zoom meetings via a standardized MCP interface, enabling AI tools like Claude and Cursor to issue natural‑language commands for meeting lifecycle operations.
claude_desktop_config.json
) or Cursor (.cursor/mcp.json
).get_meetings
, create_meeting
, update_meeting
, delete_meeting
) from your AI workflow.Q: Which command should I use to start the server?
A: Use npx -y @prathamesh0901/zoom-mcp-server
with the required environment variables.
Q: Do I need to build the project before running?
A: Not when using the npx approach; the package will be executed directly. For local development you can run npm run dev
after installing dependencies.
Q: What permissions are required on the Zoom app? A: All meeting‑related scopes under Meeting must be enabled in the Server‑to‑Server OAuth app.
Q: Can I run multiple instances for different Zoom accounts?
A: Yes, configure separate entries under mcpServers
with distinct environment variable values.
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.
Please log in to share your review and rating for this MCP.
{ "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>" } } } }
Explore related MCPs that share similar capabilities and solve comparable challenges
by zed-industries
A high‑performance, multiplayer code editor designed for speed and collaboration.
by modelcontextprotocol
Model Context Protocol Servers
by modelcontextprotocol
A Model Context Protocol server for Git repository interaction and automation.
by modelcontextprotocol
A Model Context Protocol server that provides time and timezone conversion capabilities.
by cline
An autonomous coding assistant that can create and edit files, execute terminal commands, and interact with a browser directly from your IDE, operating step‑by‑step with explicit user permission.
by continuedev
Enables faster shipping of code by integrating continuous AI agents across IDEs, terminals, and CI pipelines, offering chat, edit, autocomplete, and customizable agent workflows.
by upstash
Provides up-to-date, version‑specific library documentation and code examples directly inside LLM prompts, eliminating outdated information and hallucinated APIs.
by github
Connects AI tools directly to GitHub, enabling natural‑language interactions for repository browsing, issue and pull‑request management, CI/CD monitoring, code‑security analysis, and team collaboration.
by daytonaio
Provides a secure, elastic infrastructure that creates isolated sandboxes for running AI‑generated code with sub‑90 ms startup, unlimited persistence, and OCI/Docker compatibility.