Zoom

v1.0.0Communicationstable

A MCP server for accessing Zoom recordings and transcripts without requiring direct authentication from the end user.

mcp-serveroauth2-clientzoom-apizoom-meetingszoom-recording
Share:
9
Stars
0
Downloads
0
Weekly
0/5

What is Zoom?

Zoom is a Model Context Protocol (MCP) server that allows AI assistants like Claude, Cursor, and VS Code to mcp server for accessing zoom recordings and transcripts without requiring direct authentication from the end user.

A MCP server for accessing Zoom recordings and transcripts without requiring direct authentication from the end user.

This server falls under the Communication category on MCPgee, the world's largest MCP server directory with 33,000+ servers.

Features

  • A MCP server for accessing Zoom recordings and transcripts w

Use Cases

Access Zoom recordings and transcripts without user authentication.
Retrieve meeting transcripts for summarization and analysis.
peakmojo

Maintainer

LicenseApache-2.0
Languagepython
Versionv1.0.0
UpdatedNov 10, 2025
Statushealthy
Maintenanceactive

Works with

ClaudeOpenAIwindowsmacoslinux

Installation

Manual Installation

npx zoom-noauth

Configuration

Configuration Details

Config File

claude_desktop_config.json

Performance

Response Metrics

Response Time< 200ms
ThroughputMedium

Resource Usage

Memory UsageLow
CPU UsageLow

How to Set Up and Use Zoom

The Zoom No-Auth MCP Server lets AI assistants access Zoom cloud recordings and meeting transcripts without requiring end-user authentication at the MCP level. Credentials are passed as tool arguments rather than stored in config files, making it suitable for server-side or headless deployments. It exposes four focused tools covering token refresh, recording listing, recording details, and transcript retrieval.

Prerequisites

  • Python 3.9 or later
  • A Zoom account with cloud recording enabled
  • A Zoom OAuth 2.0 app configured in the Zoom Marketplace (Server-to-Server or OAuth flow)
  • Your Zoom Client ID, Client Secret, and a valid Refresh Token
  • Git to clone the repository
1

Clone the repository

Download the mcp-server-zoom-noauth source.

git clone https://github.com/peakmojo/mcp-server-zoom-noauth.git
cd mcp-server-zoom-noauth
2

Install Python dependencies

Install all required packages.

pip install -r requirements.txt
3

Start the MCP server

Launch the server module. No environment variables are required at startup since credentials are passed per tool call.

python -m src.mcp_server_zoom_noauth.server
4

Register the server in Claude Desktop

Add the server to your claude_desktop_config.json. The server requires no env vars in the config since auth is handled per-request.

{
  "mcpServers": {
    "zoom-noauth": {
      "command": "python",
      "args": ["-m", "src.mcp_server_zoom_noauth.server"],
      "cwd": "/absolute/path/to/mcp-server-zoom-noauth"
    }
  }
}
5

Obtain a Zoom access token

Use the zoom_refresh_token tool to exchange your refresh token for an access token. This token is then passed to the other tools.

# Tool call arguments
{
  "zoom_refresh_token": "your_refresh_token",
  "zoom_client_id": "your_client_id",
  "zoom_client_secret": "your_client_secret"
}

Zoom Examples

Client configuration

Claude Desktop config running the Zoom no-auth server from the cloned directory.

{
  "mcpServers": {
    "zoom-noauth": {
      "command": "python",
      "args": ["-m", "src.mcp_server_zoom_noauth.server"],
      "cwd": "/Users/you/mcp-server-zoom-noauth"
    }
  }
}

Prompts to try

Example prompts for retrieving Zoom recordings and transcripts through Claude.

- "List all my Zoom cloud recordings from January 2024"
- "Get the transcript for Zoom meeting ID 123456789"
- "Summarize the key discussion points from my last recorded Zoom call"
- "Fetch recording details for meeting 987654321 and extract action items"
- "Refresh my Zoom access token using my refresh token and client credentials"

Troubleshooting Zoom

Token refresh returns 401 Invalid client credentials

Double-check your zoom_client_id and zoom_client_secret. These come from your Zoom Marketplace app settings under App Credentials, not from your Zoom account password. Ensure the app is published or in development mode.

zoom_list_recordings returns an empty array

Verify that cloud recording is enabled for your Zoom account and that recordings actually exist in the date range specified by from_date and to_date (format: YYYY-MM-DD). The access token must belong to a user who owns the recordings.

ModuleNotFoundError on server startup

Run pip install -r requirements.txt from the project root and ensure you are using the correct Python environment. The -m flag requires the current directory to be the project root so Python can resolve the src package.

Frequently Asked Questions about Zoom

What is Zoom?

Zoom is a Model Context Protocol (MCP) server that mcp server for accessing zoom recordings and transcripts without requiring direct authentication from the end user. It connects AI assistants to external tools and data sources through a standardized interface.

How do I install Zoom?

Follow the installation instructions on the Zoom GitHub repository. Clone the repo, install dependencies, and add the server config to your AI client.

Which AI clients work with Zoom?

Zoom works with all major MCP-compatible AI clients including Claude Desktop, Claude Code, Cursor, VS Code (GitHub Copilot), Windsurf, and Cline.

Is Zoom free to use?

Yes, Zoom is open source and available under the Apache-2.0 license. You can use it freely in both personal and commercial projects.

Browse More Communication MCP Servers

Explore all communication servers available in the MCPgee directory. Each server includes setup guides for Claude, Cursor, and VS Code.

Quick Config Preview

{ "mcpServers": { "zoom-noauth": { "command": "npx", "args": ["-y", "zoom-noauth"] } } }

Add this to your claude_desktop_config.json or .cursor/mcp.json

Read the full setup guide →

Ready to use Zoom?

Browse our complete directory of 33,000+ MCP servers, read setup guides for your editor, and start building with the Model Context Protocol.

33,000+ ServersFree & Open SourceStep-by-Step Guides