Skip to main content
Glama
Angad-2002

Attendee MCP Server

by Angad-2002

get_meeting_transcript

Retrieve transcribed text from recorded meetings using a bot ID. This tool extracts conversation content for documentation, analysis, or review purposes.

Instructions

Get the transcript from a meeting bot

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
bot_idYesID of the bot whose transcript to retrieve

Implementation Reference

  • The main handler function that executes the get_meeting_transcript tool. It validates the bot_id input, fetches the transcript via API, and formats the response using a helper.
    private async getMeetingTranscript(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}/transcript`);
    
      return {
        content: [
          {
            type: "text",
            text: this.formatTranscriptResponse(data, bot_id),
          },
        ],
      };
    }
  • The tool schema definition including name, description, and input schema (requires bot_id string). Registered in the ListTools handler.
    {
      name: "get_meeting_transcript",
      description: "Get the transcript from a meeting bot",
      inputSchema: {
        type: "object",
        properties: {
          bot_id: {
            type: "string",
            description: "ID of the bot whose transcript to retrieve",
          },
        },
        required: ["bot_id"],
      },
    },
  • src/index.ts:413-414 (registration)
    The switch case in the CallToolRequestHandler that routes calls to the getMeetingTranscript handler function.
    case "get_meeting_transcript":
      return await this.getMeetingTranscript(args);

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