Zoom MCP Server provides a Model Context Protocol server that helps interact with Zoom meetings through AI assistance. It allows you to connect AI capabilities to your Zoom meetings by setting up a server-to-server OAuth connection.
Clone the repository to your local machine:
git clone https://github.com/JavaProgrammerLB/zoom-mcp-server
To use the Zoom MCP server, you'll need to obtain the necessary API credentials:
Create a configuration file for the MCP server with the following structure:
{
"mcpServers": {
"zoom-mcp-server": {
"command": "npx",
"args": [
"/PATH/TO/zoom-mcp-server"
],
"env": {
"ZOOM_ACCOUNT_ID": "${ZOOM_ACCOUNT_ID}",
"ZOOM_CLIENT_ID": "${ZOOM_CLIENT_ID}",
"ZOOM_CLIENT_SECRET": "${ZOOM_CLIENT_SECRET}"
}
}
}
}
Make sure to:
/PATH/TO/zoom-mcp-server
with the actual path to where you cloned the repositoryZOOM_ACCOUNT_ID
: Your Zoom account IDZOOM_CLIENT_ID
: Your Zoom client IDZOOM_CLIENT_SECRET
: Your Zoom client secretOnce configured, the MCP server creates a connection between your AI application and Zoom meetings. The server handles the OAuth authentication flow and provides the necessary API endpoints to interact with Zoom's meeting functionalities.
After setting up the configuration, you can start the MCP server using the specified command and arguments in your configuration file. The server will authenticate with Zoom using the provided credentials and begin listening for connections.
With the server running, your AI application can now interact with Zoom meetings by sending requests to the MCP server, which will forward them to the Zoom API after handling authentication. This enables features like joining meetings, retrieving meeting information, and other Zoom API capabilities based on the permissions you set up.
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.