Skip to main content
Glama

get_meeting

Retrieve detailed meeting information by specifying the meeting ID using the Zoom API MCP Server, enabling structured and authenticated access to Zoom resources.

Input Schema

NameRequiredDescriptionDefault
meeting_idYesThe meeting ID

Input Schema (JSON Schema)

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

Implementation Reference

  • Handler function that retrieves a meeting's details by calling the Zoom API GET /meetings/{meeting_id} endpoint.
    handler: async ({ meeting_id }) => { try { const response = await zoomApi.get(`/meetings/${meeting_id}`); return handleApiResponse(response); } catch (error) { return handleApiError(error); } }
  • Input schema using Zod to validate the meeting_id parameter.
    schema: { meeting_id: z.string().describe("The meeting ID") },
  • src/server.js:46-46 (registration)
    Calls registerTools on meetingsTools array, which registers the get_meeting tool with the MCP server.
    registerTools(meetingsTools);

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