Integrate Zoom MCP server into your Slack workspace for instant access to your AI agent.
Tools that your AI agent can use through this MCP server to interact with Zoom
View your user information
Update a webinar's topic, start time, or other settings
Updates an existing Zoom meeting
Send chat messages on Zoom to either an individual user who is in your contact list or to a of which you are a member.
Retrieves detailed report on each webinar attendee. You can get webinar participant reports for the last 6 months. See the docs here.
Gets a user's Zoom phone call logs. See the documentation
The feature for Webinars allows attendees to ask questions during the Webinar and for the panelists, co-hosts and host to answer their questions. Use this API to list Q&A of a specific Webinar.
Retrieve information on participants from a past meeting. See the docs here.
List meetings for a user. See the documentation
List a user's chat channels.
Get your account's call recordings. See the documentation
List all cloud recordings for a user. Returns recording metadata only — to obtain a download link for a given recording, use Get Recording Download Link. See the documentation
Gets details of a scheduled webinar. See the docs here.
Generate a temporary, pre-signed download link for one Zoom cloud recording file. Use to download, fetch, or share a recording. Call Get Meeting Recordings first to list a meeting's files and pass the id of the one you want, or omit Recording File to get the meeting's main video recording automatically. Returns downloadUrl, expiresAt, expiresInSeconds, and the file's recordingId, fileType, fileExtension, fileSize, and recording start/end timestamps. This link contains a credential — anyone who has it can download the file without logging in to Zoom, until it expires. Example: call with meetingId=84598792483 and no recording file → returns { downloadUrl: "https://us02web.zoom.us/rec/download/abc123?access_token=eyJ...", expiresInSeconds: 900, fileType: "MP4", fileSize: 148203910 }. See the documentation
Get the transcript of a past meeting. Fetches the VTT file server-side using your OAuth token and returns speaker-attributed plain text alongside the original authenticated URL. See the documentation
Retrieve the summary of a meeting or webinar. See the documentation
Get the cloud recording metadata for one Zoom meeting. Use when you need to know what a meeting recorded — its video, audio, chat, and transcript files — or to pick a specific file to download. To find a meeting ID, call List Meetings or List All Recordings first. Returns the meeting's details plus a recording_files array whose entries each carry id, file_type, file_size, recording_type, and status. This is metadata only: the download_url on each file does not work on its own — pass that file's id to Get Recording Download Link to get a usable URL. Example: call with meetingId=84598792483 → returns the meeting's topic and start time plus recording files such as { id: "a1b2c3d4-5e6f-7890-abcd-ef1234567890", file_type: "MP4", recording_type: "shared_screen_with_speaker_view", file_size: 148203910, status: "completed" }. A meeting with no cloud recordings returns an empty recording_files array rather than an error, so check the array's length before reporting a failure. See the documentation
Retrieves the details of a meeting.
Returns the authenticated Zoom user's ID, name, email, account ID, and timezone. Call this first when the user says 'my meetings', 'my recordings', or needs their Zoom identity. Use id with Create Meeting, account_id to scope queries, and email to match participants in List Past Meeting Participants. See the documentation.
Disassociates (unlinks) a user from the associated account or permanently deletes a user.
Delete a meeting. See the documentation
Creates a new user in your account.
Creates a meeting for a user. A maximum of 100 meetings can be created for a user in a day.
Registers a participant for a webinar. See the docs here.
Registers a participant or multiple participants for a meeting. See the documentation