zoom-mcp-server

zoom-mcp-server

3

Zoom MCP Server is an MCP server designed for managing Zoom meetings with a standardized interface. It integrates seamlessly with AI tools like Claude and Cursor to create, update, delete, and retrieve meetings efficiently.

Zoom MCP Server

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.


⚙️ Claude / Cursor Configuration

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.


🛠 Features

ToolDescription
get_meetingsRetrieve all active Zoom meetings
create_meetingCreate a new Zoom meeting
update_meetingUpdate an existing meeting
delete_meetingDelete a Zoom meeting

Each tool is implemented using Zod schema validation for parameters.


🧑‍💻 Local Development

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

🤝 Contributing

Contributions are welcome and appreciated! To contribute:

  1. Fork the repository
  2. Create a new branch:
    git checkout -b feature/your-feature-name
    
  3. Make your changes and commit:
    git commit -m "Add some feature"
    
  4. Push to your fork and open a pull request.

📄 License

This project is licensed under the MIT License.