summarizeMeeting
Generate concise meeting summaries from transcripts to capture key decisions and action items.
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:176-193 (handler)The handler function for the 'summarizeMeeting' tool. It takes a meeting transcript as input and returns a structured text prompt with instructions for identifying main topics and summarizing them, embedding the provided transcript.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)Zod input schema defining the 'transcript' parameter for the 'summarizeMeeting' tool.{ transcript: z.string().describe("The meeting transcript to summarize"), },
- src/index.ts:170-194 (registration)Registration of the 'summarizeMeeting' tool using McpServer.tool(), including name, description, input schema, and handler function.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}` }] }; } );