Fireflies MCP Server

fireflies_generate_summary

Generate a summary of a meeting transcript

Input Schema

NameRequiredDescriptionDefault
formatNoFormat of the summary (bullet_points or paragraph)
transcript_idYesID of the transcript to summarize

Input Schema (JSON Schema)

{ "properties": { "format": { "description": "Format of the summary (bullet_points or paragraph)", "enum": [ "bullet_points", "paragraph" ], "type": "string" }, "transcript_id": { "description": "ID of the transcript to summarize", "type": "string" } }, "required": [ "transcript_id" ], "type": "object" }