Zoom API MCP Server

create_webinar

Schedule and manage Zoom webinars by specifying topic, duration, start time, and settings. Supports recurring and password-protected webinars with structured inputs via Zoom API MCP Server.

Input Schema

NameRequiredDescriptionDefault
agendaNoWebinar description
durationNoWebinar duration in minutes
passwordNoWebinar password
settingsNoWebinar settings
start_timeNoWebinar start time
timezoneNoTime zone
topicYesWebinar topic
typeYesWebinar type (5: Webinar, 6: Recurring webinar with no fixed time, 9: Recurring webinar with fixed time)
user_idYesThe user ID or email address

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "agenda": { "description": "Webinar description", "type": "string" }, "duration": { "description": "Webinar duration in minutes", "type": "number" }, "password": { "description": "Webinar password", "type": "string" }, "settings": { "additionalProperties": true, "description": "Webinar settings", "properties": {}, "type": "object" }, "start_time": { "description": "Webinar start time", "type": "string" }, "timezone": { "description": "Time zone", "type": "string" }, "topic": { "description": "Webinar topic", "type": "string" }, "type": { "description": "Webinar type (5: Webinar, 6: Recurring webinar with no fixed time, 9: Recurring webinar with fixed time)", "maximum": 9, "minimum": 5, "type": "number" }, "user_id": { "description": "The user ID or email address", "type": "string" } }, "required": [ "user_id", "topic", "type" ], "type": "object" }
ID: h6x0sr1f0c