remove_meeting_bot
Remove a bot from a meeting by specifying its ID to manage automated meeting participants.
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:508-525 (handler)The handler function for remove_meeting_bot tool. Validates bot_id, makes a POST request to `/api/v1/bots/{bot_id}/leave` API endpoint, and returns a formatted success message with 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:252-264 (schema)The tool schema registration in the list of tools, defining name, description, and input schema requiring 'bot_id'.{ 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:407-408 (registration)The switch case registration that dispatches tool calls named 'remove_meeting_bot' to the removeMeetingBot handler method.case "remove_meeting_bot": return await this.removeMeetingBot(args);