Aerostack
electrical_services

Zoom MCP Server — Hosted Api Connectors Integration

MCP Server language Hosted language Public

Schedule meetings, manage webinars, list participants, and access cloud recordings in Zoom — full Server-to-Server OAuth for enterprise automation.

aerostack @aerostack verified
v0.1.0 MIT Updated May 13, 2026
robot_2

Use with AI AssistantsMCP

Connect Claude, Cursor, or any MCP-compatible client — then call tools directly

① Add This MCP Server

Paste into your AI client config — then all its tools are available instantly.

.claude/mcp.json
{
  "mcpServers": {
    "zoom": {
      "url": "https://mcp.aerostack.dev/s/aerostack/mcp-zoom",
      "headers": {
        "Authorization": "Bearer YOUR_AEROSTACK_TOKEN"
      }
    }
  }
}

Replace YOUR_AEROSTACK_TOKEN with your API token from the dashboard.

② Call a Tool

Ask your AI assistant to call a specific tool, or send raw JSON-RPC:

+14 more

Natural Language Prompt

“Use the list_meetings tool to list meetings for the authenticated zoom user. filter by type: scheduled, live, or upcoming

Using a Workspace?

Add this MCP to your Workspace — your team shares one token, secrets are stored securely, and every AI agent in the workspace can call it without per-user setup.

add_circleAdd to Workspace

description Overview

mcp-zoom — Zoom MCP Server

Automate Zoom meetings, webinars, users, and cloud recordings from any AI agent — full Server-to-Server OAuth support.

Zoom is the world's leading video communications platform. This MCP server gives your agents complete access to the Zoom REST API v2: creating and managing meetings, scheduling webinars, listing participants, retrieving cloud recordings, pulling usage reports, and more — all without user-level OAuth flows.

Live endpoint: https://mcp.aerostack.dev/s/aerostack/mcp-zoom


What You Can Do

  • Automatically create Zoom meetings from form submissions, calendar triggers, or AI chat
  • Schedule webinars with full registration management
  • Pull post-meeting participant lists and cloud recordings for compliance or CRM sync
  • Get AI-generated meeting summaries for completed calls
  • Manage users and account-level settings without manual Zoom admin UI interactions

Available Tools

Tool Description
list_meetings List meetings for the authenticated user (scheduled, live, upcoming)
get_meeting Get full meeting details: topic, start time, join URL, password, agenda
create_meeting Create a meeting with topic, schedule, duration, and settings
update_meeting Update meeting topic, time, duration, or agenda
delete_meeting Permanently delete a meeting
get_meeting_participants Get participants from a past/ended meeting
get_meeting_recordings Get cloud recordings for a specific meeting
list_past_meetings List past meetings with summary statistics
list_webinars List all scheduled webinars for the authenticated user
get_webinar Get full webinar details and registrant count
create_webinar Create a new webinar with topic, schedule, and agenda
get_webinar_registrants Get registrants for a webinar (pending/approved/denied)
get_user Get user profile by ID, email, or "me" for the authenticated user
list_users List all users in the account
update_user Update user profile fields (name, job title, department)
get_user_settings Get user-level Zoom settings
get_account_reports Get daily usage reports (meetings, participants, minutes)
get_meeting_summary Get AI-generated summary for a completed meeting
list_recordings List all cloud recordings for the account
delete_recording Delete a specific cloud recording (trash or permanent)
_ping Verify credentials by fetching the authenticated user profile

Configuration

Variable Required Description How to Get
ZOOM_ACCOUNT_ID Yes Your Zoom account ID Zoom Marketplace → Your App → App Credentials
ZOOM_CLIENT_ID Yes Server-to-Server OAuth app client ID Zoom Marketplace → Develop → Build App → Server-to-Server OAuth
ZOOM_CLIENT_SECRET Yes Server-to-Server OAuth app client secret Same as above — generated when you create the Server-to-Server OAuth app
Setting Up Server-to-Server OAuth
  1. Go to Zoom Marketplace and sign in
  2. Click DevelopBuild App
  3. Select Server-to-Server OAuth app type
  4. Copy Account ID, Client ID, and Client Secret
  5. Under Scopes, add: meeting:read, meeting:write, webinar:read, webinar:write, user:read, user:write, report:read:admin, recording:read, recording:write
  6. Activate the app

Quick Start

Add to Aerostack Workspace
  1. Go to aerostack.dev → Your Project → MCPs
  2. Search for "Zoom" and click Add to Workspace
  3. Add your ZOOM_ACCOUNT_ID, ZOOM_CLIENT_ID, and ZOOM_CLIENT_SECRET under Project → Secrets

Once added, every AI agent in your workspace can create and manage Zoom meetings automatically.

Example Prompts
"Create a Zoom meeting for tomorrow at 2pm ET titled 'Q2 Planning'"
"Get the participant list from our last all-hands meeting"
"List all cloud recordings from the past 30 days"
"Schedule a product launch webinar for April 15th at 6pm"
Direct API Call
curl -X POST https://mcp.aerostack.dev/s/aerostack/mcp-zoom \
  -H 'Content-Type: application/json' \
  -H 'X-Mcp-Secret-ZOOM-ACCOUNT-ID: your-account-id' \
  -H 'X-Mcp-Secret-ZOOM-CLIENT-ID: your-client-id' \
  -H 'X-Mcp-Secret-ZOOM-CLIENT-SECRET: your-client-secret' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"create_meeting","arguments":{"topic":"Team Standup","start_time":"2026-04-01T09:00:00Z","duration_minutes":15}}}'

License

MIT

terminal Tools (20)

Available tools on this MCP server. Each tool can be called directly from any AI agent.

terminal
list_meetings #1

List meetings for the authenticated Zoom user. Filter by type: scheduled, live, or upcoming.

terminal
get_meeting #2

Get full details of a specific Zoom meeting by ID. Returns topic, start_time, duration, join_url, password, agenda, and settings.

terminal
create_meeting #3

Create a new Zoom meeting. Returns the meeting ID, join URL, and password.

terminal
update_meeting #4

Update an existing Zoom meeting. Provide only the fields to change.

terminal
delete_meeting #5

Delete a Zoom meeting by ID. The meeting will be permanently removed.

terminal
get_meeting_participants #6

Get the list of participants from a past (ended) Zoom meeting.

terminal
get_meeting_recordings #7

Get cloud recordings for a specific Zoom meeting.

terminal
list_past_meetings #8

List past meetings for the authenticated user with summary statistics (participants, duration).

terminal
list_webinars #9

List all scheduled webinars for the authenticated Zoom user.

terminal
get_webinar #10

Get full details of a specific Zoom webinar by ID, including topic, start time, registrants count, and settings.

terminal
create_webinar #11

Create a new Zoom webinar for the authenticated host.

terminal
get_webinar_registrants #12

Get the list of registrants for a Zoom webinar.

terminal
get_user #13

Get a Zoom user profile by user ID or email address. Use "me" to get the authenticated user.

terminal
list_users #14

List all users in the Zoom account. Requires account-level permissions.

terminal
update_user #15

Update a Zoom user profile. Provide only the fields to change.

terminal
get_user_settings #16

Get user-level Zoom settings including meeting defaults, recording preferences, and security settings.

terminal
get_account_reports #17

Get daily usage reports for the Zoom account over a date range. Returns meeting counts, participants, and minutes.

terminal
get_meeting_summary #18

Get the AI-generated summary for a completed Zoom meeting, including topics discussed and action items.

terminal
list_recordings #19

List all cloud recordings for the authenticated Zoom user within a date range.

terminal
delete_recording #20

Delete a cloud recording file from a Zoom meeting.

Details

upgrade Version 0.1.0
gavel License MIT
wifi Transport streamable-http
lock Access Public
category Category API Connectors
terminal Tools 20

language Live Endpoint

https://mcp.aerostack.dev/s/aerostack/mcp-zoom

Sub-50ms globally · Zero cold start

Publisher

aerostack
@aerostack verified

Pre-built functions for the most common MCP tool patterns. Clone, extend, and deploy.

Tags

Browse more servers

More in API Connectors

Browse API Connectors MCPs →

Frequently asked questions

What is the Zoom MCP server and what can it do? +

The Zoom MCP server is hosted on Aerostack and exposes these tools to your AI agent: `list_meetings`, `get_meeting`, `create_meeting`, `update_meeting`, `delete_meeting`. You get one hosted URL — no self-hosting — that works from Claude, Cursor, ChatGPT, Gemini, VS Code, or any MCP-compatible client, and you can share it with your team or combine it with other MCP servers in a workspace.

Is the Zoom MCP server hosted, or do I have to run it myself? +

It's hosted on Aerostack's edge infrastructure — you don't deploy or maintain anything. Add it to a workspace and you get one authenticated URL, with secrets encrypted, that any AI agent or editor can connect to. Use it solo or share the same URL across your whole team.

Which AI agents and editors can use the Zoom MCP server? +

Any MCP client: Claude and Claude Code, Cursor, ChatGPT, Gemini, Windsurf, Cline, VS Code, and custom agents. Because it's one hosted URL, the same Zoom MCP server works everywhere — and you can compose it with other MCP servers, skills, and functions behind a single workspace URL.

How do I install the Zoom MCP server in Claude Desktop? +

Add the following to your Claude Desktop config (`claude_desktop_config.json`): ```json { "mcpServers": { "@aerostack/mcp-zoom": { "command": "npx", "args": ["-y", "@aerostack/@aerostack/mcp-zoom"] } } } ``` Then restart Claude Desktop and the tools will appear automatically.

How do I use the Zoom MCP server in Cursor? +

In Cursor, open **Settings → MCP** and add: ```json { "name": "@aerostack/mcp-zoom", "command": "npx", "args": ["-y", "@aerostack/@aerostack/mcp-zoom"] } ``` Save and reload Cursor. The MCP tools will be available in Agent mode.

Does Zoom MCP require authentication? +

Yes. Zoom requires authentication. Check the MCP's documentation for the required credentials.