remove_meeting_bot
Remove an AI bot from a meeting by specifying its ID to manage automated participants in platforms like Zoom, Google Meet, or Microsoft Teams.
Instructions
Remove a bot from a meeting
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| bot_id | Yes | ID of the bot to remove |
Implementation Reference
- src/index.ts:555-572 (handler)The handler function that validates the bot_id, makes a POST request to the API to make the bot leave the meeting, and returns a formatted response with success message and updated bot status.private async removeMeetingBot(args: Record<string, unknown>) { const bot_id = args.bot_id as string; if (!bot_id || typeof bot_id !== 'string') { throw new Error("Missing or invalid required parameter: bot_id"); } const data = await this.makeApiRequest(`/api/v1/bots/${bot_id}/leave`, "POST", {}); return { content: [ { type: "text", text: `β Successfully requested bot ${bot_id} to leave the meeting.\n\nπ Updated Status:\n${this.formatBotStatus(data)}`, }, ], }; }
- src/index.ts:264-273 (schema)Input schema defining the required 'bot_id' parameter as a string.inputSchema: { type: "object", properties: { bot_id: { type: "string", description: "ID of the bot to remove", }, }, required: ["bot_id"], },
- src/index.ts:261-274 (registration)Tool registration in the listTools handler, specifying name, description, and input schema.{ name: "remove_meeting_bot", description: "Remove a bot from a meeting", inputSchema: { type: "object", properties: { bot_id: { type: "string", description: "ID of the bot to remove", }, }, required: ["bot_id"], }, },
- src/index.ts:419-420 (registration)Dispatch case in the CallToolRequestSchema handler that routes to the removeMeetingBot function.case "remove_meeting_bot": return await this.removeMeetingBot(args);