Zoom MCP Server — Hosted Api Connectors Integration
MCP Server language Hosted language PublicSchedule meetings, manage webinars, list participants, and access cloud recordings in Zoom — full Server-to-Server OAuth for enterprise automation.
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.
{
"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:
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.
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
- Go to Zoom Marketplace and sign in
- Click Develop → Build App
- Select Server-to-Server OAuth app type
- Copy Account ID, Client ID, and Client Secret
- Under Scopes, add:
meeting:read,meeting:write,webinar:read,webinar:write,user:read,user:write,report:read:admin,recording:read,recording:write - Activate the app
Quick Start
Add to Aerostack Workspace
- Go to aerostack.dev → Your Project → MCPs
- Search for "Zoom" and click Add to Workspace
- Add your
ZOOM_ACCOUNT_ID,ZOOM_CLIENT_ID, andZOOM_CLIENT_SECRETunder 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.
list_meetings #1 List meetings for the authenticated Zoom user. Filter by type: scheduled, live, or upcoming.
get_meeting #2 Get full details of a specific Zoom meeting by ID. Returns topic, start_time, duration, join_url, password, agenda, and settings.
create_meeting #3 Create a new Zoom meeting. Returns the meeting ID, join URL, and password.
update_meeting #4 Update an existing Zoom meeting. Provide only the fields to change.
delete_meeting #5 Delete a Zoom meeting by ID. The meeting will be permanently removed.
get_meeting_participants #6 Get the list of participants from a past (ended) Zoom meeting.
get_meeting_recordings #7 Get cloud recordings for a specific Zoom meeting.
list_past_meetings #8 List past meetings for the authenticated user with summary statistics (participants, duration).
list_webinars #9 List all scheduled webinars for the authenticated Zoom user.
get_webinar #10 Get full details of a specific Zoom webinar by ID, including topic, start time, registrants count, and settings.
create_webinar #11 Create a new Zoom webinar for the authenticated host.
get_webinar_registrants #12 Get the list of registrants for a Zoom webinar.
get_user #13 Get a Zoom user profile by user ID or email address. Use "me" to get the authenticated user.
list_users #14 List all users in the Zoom account. Requires account-level permissions.
update_user #15 Update a Zoom user profile. Provide only the fields to change.
get_user_settings #16 Get user-level Zoom settings including meeting defaults, recording preferences, and security settings.
get_account_reports #17 Get daily usage reports for the Zoom account over a date range. Returns meeting counts, participants, and minutes.
get_meeting_summary #18 Get the AI-generated summary for a completed Zoom meeting, including topics discussed and action items.
list_recordings #19 List all cloud recordings for the authenticated Zoom user within a date range.
delete_recording #20 Delete a cloud recording file from a Zoom meeting.
Details
language Live Endpoint
https://mcp.aerostack.dev/s/aerostack/mcp-zoom
Sub-50ms globally · Zero cold start
Publisher
Pre-built functions for the most common MCP tool patterns. Clone, extend, and deploy.
More in API Connectors
Browse API Connectors MCPs →Aerostack Registry
by @aerostack
Discover and invoke any MCP, Function, or Skill published to the Aerostack marketplace — the universal AI capability hub.
Algolia
by @aerostack
Search indexes, manage records, browse data, and configure ranking in Algolia — AI-native instant search access.
Arangodb
by @aerostack
Query documents, run AQL, traverse graphs, and manage collections in your ArangoDB database — AI-native multi-model database access.
Ayrshare
by @aerostack
Post, schedule, and analyze social media across 13 platforms — Facebook, Instagram, X, LinkedIn, TikTok, Bluesky, Threads, Reddit, Pinterest, YouTube, Telegram, Snapchat, Google Business.
Basecamp
by @aerostack
Manage projects, to-dos, messages, schedules, and campfire chats in Basecamp — AI-native project management.
Bigquery
by @aerostack
Run SQL queries, list datasets and tables, inspect schemas, and export results from Google BigQuery — AI-native data warehouse access.
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.