delete_a_meeting
Deletes a specified Zoom meeting by its unique ID using the Zoom MCP Server. Input the meeting ID to remove it from the server.
Instructions
Delete a meeting with a given ID
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | The ID of the meeting to delete. |
Implementation Reference
- operations/meeting.ts:81-89 (handler)The core handler function that executes the DELETE request to the Zoom API to delete the specified meeting.
export async function deleteMeeting(options: DeleteMeetingOptions) { const response = await zoomRequest( `https://api.zoom.us/v2/meetings/${options.id}`, { method: "DELETE", }, ); return response; } - operations/meeting.ts:40-42 (schema)Zod schema defining the input for the delete_a_meeting tool: requires a numeric meeting ID.
export const DeleteMeetingOptionsSchema = z.object({ id: z.number().describe("The ID of the meeting to delete."), }); - index.ts:136-140 (registration)Registers the delete_a_meeting tool in the MCP server's ListToolsRequestHandler, including name, description, and input schema.
{ name: "delete_a_meeting", description: "Delete a meeting with a given ID", inputSchema: zodToJsonSchema(DeleteMeetingOptionsSchema), }, - index.ts:172-178 (handler)The MCP tool dispatcher for delete_a_meeting: parses input arguments and calls the deleteMeeting implementation.
case "delete_a_meeting": { const args = DeleteMeetingOptionsSchema.parse(request.params.arguments); const result = await deleteMeeting(args); return { content: [{ type: "text", text: result }], }; }