Skip to main content
Glama

get_webinar

Retrieve detailed information about a specific Zoom webinar using its unique ID through the Zoom API MCP Server, ensuring accurate data retrieval and streamlined webinar management.

Input Schema

NameRequiredDescriptionDefault
webinar_idYesThe webinar ID

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "webinar_id": { "description": "The webinar ID", "type": "string" } }, "required": [ "webinar_id" ], "type": "object" }

Implementation Reference

  • Handler function that retrieves the details of a specific webinar using the Zoom API endpoint `/webinars/${webinar_id}`.
    handler: async ({ webinar_id }) => { try { const response = await zoomApi.get(`/webinars/${webinar_id}`); return handleApiResponse(response); } catch (error) { return handleApiError(error); } }
  • Input schema using Zod for validating the webinar_id parameter.
    schema: { webinar_id: z.string().describe("The webinar ID") },
  • src/server.js:48-48 (registration)
    Registers all webinar-related tools, including 'get_webinar', by calling registerTools with the webinarsTools array imported from './tools/webinars.js'.
    registerTools(webinarsTools);

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/mattcoatsworth/zoom-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server