loading…
Search for a command to run...
loading…
Enables users to list and manage Zoom cloud recordings through the Model Context Protocol. It allows for searching recordings by date and retrieving specific me
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.
An MCP (Model Context Protocol) server that enables Claude to access and manage your Zoom cloud recordings.
In your Zoom app settings, add these scopes:
cloud_recording:read:list_user_recordings:admincloud_recording:read:list_recording_files:adminClick Activate your app to enable it.
bun install
bun run build
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 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
| 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 |
Once configured, you can ask Claude to interact with your Zoom recordings:
"Show me my Zoom recordings from the past week"
"List all recordings from January 2024"
"Get the download links for meeting abc123"
"Show me the details of my last recorded meeting"
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 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.
# 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
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
MIT
Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"mcp-zoom-recordings": {
"command": "npx",
"args": []
}
}
}Transcripts, channel stats, search
AI image generation using various models.
Unified GPU inference API with 30 AI services (LLM, image gen, video, TTS, whisper, embeddings, reranking, OCR) as MCP tools. Pay-per-use via x402 USDC or API k
A powerful image generation tool using Google's Imagen 3.0 API through MCP. Generate high-quality images from text prompts with advanced photography, artistic,