Zoom API MCP server

Integrates with Zoom's API to enable scheduling meetings, managing participants, retrieving recordings, and automating administrative tasks through OAuth 2.0 authentication and structured tools.
Back to servers
Provider
Matt Coatsworth
Release date
Apr 05, 2025
Language
TypeScript
Stats
1 star

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.

Prerequisites

Before getting started, make sure you have:

  • Node.js 16 or higher installed
  • Zoom API credentials (Client ID, Client Secret, Account ID)

Installation

To install the Zoom API MCP Server:

  1. Clone the repository to your local machine
  2. Install dependencies:
npm install
  1. Create a .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

Running the Server

Start the server in development mode with:

npm run dev

To test the server with MCP Inspector:

npm run inspect

Using the API

The Zoom API MCP Server provides access to various Zoom API categories:

Available API Categories

  • Meetings: Create, read, update, and delete meetings
  • Users: Manage users in your Zoom account
  • Webinars: Create and manage webinars
  • Account: Manage account settings and profile
  • Chat: Manage Zoom Chat channels and messages
  • Phone: Manage Zoom Phone users and numbers
  • Contacts: Manage contacts
  • Recordings: Access and manage cloud recordings
  • Reports: Generate various reports
  • Webhooks: Set up event notifications
  • Zoom Rooms: Manage Zoom Rooms

Accessing Documentation

The server provides built-in documentation resources that you can access using specific URIs:

zoom-api://overview
zoom-api://meetings
zoom-api://users

Authentication

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.

How to add this MCP server to Cursor

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.

Adding an MCP server to Cursor globally

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"
            ]
        }
    }
}

Adding an MCP server to a project

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.

How to use the MCP server

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.

Want to 10x your AI skills?

Get a free account and learn to code + market your apps using AI (with or without vibes!).

Nah, maybe later