Zoom MCP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| ZOOM_MODE | No | `readonly` (default) or `readwrite`. Set to `readwrite` to enable creating meetings, sending chat messages, etc. | readonly |
| ZOOM_CLIENT_ID | Yes | Zoom app client ID | |
| ZOOM_ACCOUNT_ID | Yes | Zoom Server-to-Server OAuth account ID | |
| ZOOM_CLIENT_SECRET | Yes | Zoom app client secret |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| zoom_list_recordingsA | List cloud recordings for a Zoom user within a date range. Returns meeting topics, dates, and recording IDs needed to fetch transcripts. |
| zoom_get_meeting_transcriptA | Download and parse the transcript for a specific meeting recording. Returns clean text with timestamps and speaker names. Use zoom_list_recordings first to find the meeting ID. |
| zoom_get_meeting_summaryA | Get the AI-generated meeting summary for a specific meeting. Requires Zoom AI Companion to be enabled on the account. Returns error if unavailable. |
| zoom_list_meetingsB | List meetings for a Zoom user. Can filter by type: scheduled, live, upcoming, or previous. |
| zoom_get_meetingA | Get detailed information about a specific meeting including settings, join URL, and agenda. |
| zoom_list_past_meeting_participantsA | List participants of a past meeting. Shows who attended, join/leave times, and duration. |
| zoom_list_usersB | List all users in the Zoom account. Can filter by status (active, inactive, pending). |
| zoom_get_userA | Get detailed information about a specific Zoom user including email, role, timezone, and department. |
| zoom_list_channelsB | List Zoom Team Chat channels for a user. |
| zoom_list_chat_messagesB | List messages in a Zoom Team Chat channel. Returns message content, sender, and timestamps. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 10 tools
Each tool has a clear, distinct purpose: meetings vs users vs chat, and within meetings, details vs summary vs transcript vs recordings vs participants. No overlap or ambiguity.
All tools follow a consistent 'zoom_[verb]_[resource]' pattern using snake_case. The verbs 'get' (for singular) and 'list' (for collections) are used uniformly, making the pattern predictable.
10 tools is well-scoped for a Zoom server covering meetings, users, and chat. Each tool earns its place with no redundancy, and the number is suitable for an MCP server.
The set focuses on retrieval but lacks create, update, or delete operations for meetings, users, and chat. Missing common actions like creating a meeting, sending a message, or updating a user leave notable gaps.