Skip to main content
Glama
ChatterBoxIO

ChatterBox MCP Server

by ChatterBoxIO

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
NameRequiredDescriptionDefault
transcriptYesThe 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}` }] }; } );
  • 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}` }] }; }
  • Input schema for 'summarizeMeeting' tool, defining the 'transcript' parameter using Zod.
    { transcript: z.string().describe("The meeting transcript to summarize"), },

Other Tools

Related Tools

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/ChatterBoxIO/chatterboxio-mcp-server'

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