Skip to main content
Glama

get_transcript

Retrieve AI-generated transcripts from Fathom meeting recordings using the recording ID to access conversation content.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
recording_idYesThe recording ID of the meeting

Implementation Reference

  • The MCP tool handler function that fetches the transcript using the FathomClient, formats it with formatTranscriptToMarkdown, and returns markdown text content.
    async ({ recording_id }) => { console.error(`Fetching transcript for ${recording_id}...`); const response = await fathom.getTranscript(recording_id); const markdown = formatTranscriptToMarkdown(response.transcript); console.error('Transcript retrieved'); return { content: [{ type: 'text', text: markdown }], }; }
  • Zod input schema defining the required 'recording_id' parameter.
    { recording_id: z.number().describe('The recording ID of the meeting'), },
  • src/index.ts:127-143 (registration)
    Full registration of the 'get_transcript' tool on the MCP server, including name, input schema, and handler function.
    server.tool( 'get_transcript', { recording_id: z.number().describe('The recording ID of the meeting'), }, async ({ recording_id }) => { console.error(`Fetching transcript for ${recording_id}...`); const response = await fathom.getTranscript(recording_id); const markdown = formatTranscriptToMarkdown(response.transcript); console.error('Transcript retrieved'); return { content: [{ type: 'text', text: markdown }], }; } );
  • Helper method in FathomClient that makes the API request to retrieve the transcript for a given recording ID.
    async getTranscript(recordingId: number): Promise<TranscriptResponse> { return this.request<TranscriptResponse>(`/recordings/${recordingId}/transcript`); }
  • TypeScript interface defining the structure of the transcript response from the Fathom API.
    export interface TranscriptResponse { transcript: TranscriptItem[]; }

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/matthewbergvinson/fathom-mcp'

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