This MCP server provides a comprehensive interface for interacting with the Zoom API, allowing you to perform operations on meetings, users, webinars, and more through the Model Context Protocol. The server handles authentication, request validation, and response formatting so you can focus on utilizing the Zoom API features.
Before getting started, make sure you have:
To install the Zoom API MCP Server:
npm install
.env
file in the root directory with your Zoom API credentials:ZOOM_CLIENT_ID=your_client_id
ZOOM_CLIENT_SECRET=your_client_secret
ZOOM_ACCOUNT_ID=your_account_id
Start the server in development mode with:
npm run dev
To test the server with MCP Inspector:
npm run inspect
The Zoom API MCP Server provides access to various Zoom API categories:
The server provides built-in documentation resources that you can access using specific URIs:
zoom-api://overview
zoom-api://meetings
zoom-api://users
The server handles OAuth 2.0 authentication automatically using the Server-to-Server OAuth credentials you provided in the .env
file. No additional authentication steps are required when making requests to the MCP server.
There are two ways to add an MCP server to Cursor. The most common way is to add the server globally in the ~/.cursor/mcp.json
file so that it is available in all of your projects.
If you only need the server in a single project, you can add it to the project instead by creating or adding it to the .cursor/mcp.json
file.
To add a global MCP server go to Cursor Settings > MCP and click "Add new global MCP server".
When you click that button the ~/.cursor/mcp.json
file will be opened and you can add your server like this:
{
"mcpServers": {
"cursor-rules-mcp": {
"command": "npx",
"args": [
"-y",
"cursor-rules-mcp"
]
}
}
}
To add an MCP server to a project you can create a new .cursor/mcp.json
file or add it to the existing one. This will look exactly the same as the global MCP server example above.
Once the server is installed, you might need to head back to Settings > MCP and click the refresh button.
The Cursor agent will then be able to see the available tools the added MCP server has available and will call them when it needs to.
You can also explictly ask the agent to use the tool by mentioning the tool name and describing what the function does.