summarizeMeeting
Extract key points and actionable insights from meeting transcripts using AI, ensuring clarity and efficiency for follow-ups and decision-making.
Instructions
Generate a concise summary of a meeting's contents from its transcript
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| transcript | Yes | The meeting transcript to summarize |
Implementation Reference
- src/index.ts:170-194 (registration)Registration of the 'summarizeMeeting' tool using server.tool, including schema and inline handler.server.tool( "summarizeMeeting", "Generate a concise summary of a meeting's contents from its transcript", { transcript: z.string().describe("The meeting transcript to summarize"), }, async ({ transcript }: { transcript: string }) => { return { content: [{ type: "text", text: `Given an online call transcript formatted as: Speaker: Transcript Identify main topics of the conversation, summarize them in the following format: - Topic Title Topic summary Remove smalltalk and insignificant topics. Do not include any introductory wording. Transcript: ${transcript}` }] }; } );
- src/index.ts:176-193 (handler)Handler function for 'summarizeMeeting' that constructs a prompt for summarizing the meeting transcript and returns it as text content.async ({ transcript }: { transcript: string }) => { return { content: [{ type: "text", text: `Given an online call transcript formatted as: Speaker: Transcript Identify main topics of the conversation, summarize them in the following format: - Topic Title Topic summary Remove smalltalk and insignificant topics. Do not include any introductory wording. Transcript: ${transcript}` }] }; }
- src/index.ts:173-175 (schema)Input schema for 'summarizeMeeting' tool, defining the 'transcript' parameter using Zod.{ transcript: z.string().describe("The meeting transcript to summarize"), },