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
| Name | Required | Description | Default |
|---|---|---|---|
| bot_id | Yes | ID of the bot whose transcript to retrieve |
Implementation Reference
- src/index.ts:501-518 (handler)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), }, ], }; }
- src/index.ts:238-251 (schema)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);