Skip to main content
Glama

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
NameRequiredDescriptionDefault
idYesThe ID of the meeting to delete.

Implementation Reference

  • 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; }
  • 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), },
  • 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 }], }; }

Other Tools

Related Tools

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/JavaProgrammerLB/zoom-mcp-server'

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