Skip to main content
Glama

remove_meeting_bot

Remove a bot from a meeting by specifying its ID, ensuring only relevant participants remain in the session for improved focus and efficiency.

Instructions

Remove a bot from a meeting

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
bot_idYesID of the bot to remove

Implementation Reference

  • The main handler function `removeMeetingBot` that executes the tool logic: validates input, calls the API to make the bot leave the meeting, and returns a formatted response with updated 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)}`, }, ], }; }
  • Input schema for the remove_meeting_bot tool, defining the required 'bot_id' string parameter.
    inputSchema: { type: "object", properties: { bot_id: { type: "string", description: "ID of the bot to remove", }, }, required: ["bot_id"], },
  • src/index.ts:252-264 (registration)
    Tool registration in the ListTools response, defining name, description, and schema for remove_meeting_bot.
    { 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)
    Switch case in CallToolRequestSchema handler that dispatches to the removeMeetingBot handler.
    case "remove_meeting_bot": return await this.removeMeetingBot(args);

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/rexposadas/attendee-mcp'

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