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
| Name | Required | Description | Default |
|---|---|---|---|
| meeting_id | Yes | The 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
- src/tools/meetings.js:57-64 (handler)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); } }
- src/tools/meetings.js:54-56 (schema)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);