Skip to main content
Glama
Angad-2002

Attendee MCP Server

by Angad-2002

remove_meeting_bot

Remove a bot from a meeting by specifying its unique ID. This tool enables efficient management of AI meeting bots across platforms like Zoom, Google Meet, and Microsoft Teams.

Instructions

Remove a bot from a meeting

Input Schema

NameRequiredDescriptionDefault
bot_idYesID of the bot to remove

Input Schema (JSON Schema)

{ "properties": { "bot_id": { "description": "ID of the bot to remove", "type": "string" } }, "required": [ "bot_id" ], "type": "object" }

Implementation Reference

  • The handler function for the 'remove_meeting_bot' tool. It validates the bot_id parameter, makes a POST request to the API to make the bot leave the meeting, and returns a formatted success message with the 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:419-420 (registration)
    The switch case in the CallToolRequestHandler that dispatches calls to the 'remove_meeting_bot' handler.
    case "remove_meeting_bot": return await this.removeMeetingBot(args);
  • src/index.ts:262-274 (registration)
    The tool registration in the ListToolsRequestHandler, defining the name, description, and input 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"], }, },
  • The input schema definition for the 'remove_meeting_bot' tool, specifying the required 'bot_id' parameter.
    inputSchema: { type: "object", properties: { bot_id: { type: "string", description: "ID of the bot to remove", }, }, required: ["bot_id"], },

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

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