MCP Zoom Recordings
Enables users to list and manage Zoom cloud recordings through the Model Context Protocol. It allows for searching recordings by date and retrieving specific meeting details, including download URLs for video, audio, and transcripts.
README
MCP Zoom Recordings
An MCP (Model Context Protocol) server that enables Claude to access and manage your Zoom cloud recordings.
Features
- list_recordings - List cloud recordings with date filtering (default: last 7 days)
- get_recording - Get recording details and download URLs for a specific meeting
Prerequisites
- Bun runtime
- Zoom account with cloud recording enabled
- Zoom Server-to-Server OAuth app
Setup
1. Create a Zoom Server-to-Server OAuth App
- Go to Zoom App Marketplace
- Click Develop > Build App
- Select Server-to-Server OAuth app type
- Fill in the required information and create the app
- Note down:
- Account ID (from App Credentials)
- Client ID (from App Credentials)
- Client Secret (from App Credentials)
2. Add Required Scopes
In your Zoom app settings, add these scopes:
cloud_recording:read:list_user_recordings:admincloud_recording:read:list_recording_files:admin
3. Activate the App
Click Activate your app to enable it.
4. Install Dependencies
bun install
5. Build the Server
bun run build
Configuration
Claude Desktop
Add to your Claude Desktop configuration file:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"zoom-recordings": {
"command": "node",
"args": ["/path/to/mcp-zoom-recordings/dist/index.js"],
"env": {
"ZOOM_API_KEY": "your-client-id",
"ZOOM_API_SECRET": "your-client-secret",
"ZOOM_ACCOUNT_ID": "your-account-id"
}
}
}
}
Replace /path/to/mcp-zoom-recordings with the actual path to this project.
Claude Code CLI
claude mcp add zoom-recordings -e ZOOM_API_KEY=your-client-id -e ZOOM_API_SECRET=your-client-secret -e ZOOM_ACCOUNT_ID=your-account-id -- node /path/to/mcp-zoom-recordings/dist/index.js
Environment Variables
| Variable | Description |
|---|---|
ZOOM_API_KEY |
Server-to-Server OAuth Client ID |
ZOOM_API_SECRET |
Server-to-Server OAuth Client Secret |
ZOOM_ACCOUNT_ID |
Your Zoom Account ID |
Usage
Once configured, you can ask Claude to interact with your Zoom recordings:
List Recent Recordings
"Show me my Zoom recordings from the past week"
"List all recordings from January 2024"
Get Recording Details
"Get the download links for meeting abc123"
"Show me the details of my last recorded meeting"
MCP Tools Reference
list_recordings
List Zoom cloud recordings for the authenticated account.
Parameters:
| Parameter | Type | Required | Description |
|---|---|---|---|
from |
string | No | Start date (YYYY-MM-DD). Default: 7 days ago |
to |
string | No | End date (YYYY-MM-DD). Default: today |
page_size |
number | No | Results per page (1-300). Default: 30 |
next_page_token |
string | No | Token for pagination |
Returns: List of meetings with recording counts and metadata.
get_recording
Get detailed information and download URLs for a specific meeting's recordings.
Parameters:
| Parameter | Type | Required | Description |
|---|---|---|---|
meeting_id |
string | Yes | Meeting UUID or meeting ID from list_recordings |
Returns: Recording details including download URLs for video, audio, transcripts, and chat logs.
Development
# Run with hot reload
bun run dev
# Build for production
bun run build
# Run linter
bun run lint
# Fix lint issues
bun run lint:fix
# Type check
bun run typecheck
# Run tests
bun test
Project Structure
src/
├── index.ts # MCP server entry point
├── auth/ # Zoom Server-to-Server OAuth
│ ├── config.ts # Environment variable loading
│ └── zoom-auth.ts # Token management
├── clients/
│ └── zoom-client.ts # Zoom API wrapper
├── tools/
│ └── recordings/ # Recording tools
│ ├── list.ts # list_recordings
│ └── get.ts # get_recording
└── types/
└── recordings.ts # Type definitions
License
MIT
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.