TranscriptionTools MCP Server

format_transcript

Transforms timestamped transcripts into naturally formatted text

Input Schema

NameRequiredDescriptionDefault
input_textYesTimestamped transcript text or path to file
is_file_pathNoWhether input_text is a file path
line_gapNoSeconds gap for line breaks
paragraph_gapNoSeconds gap for paragraph breaks

Input Schema (JSON Schema)

{ "properties": { "input_text": { "description": "Timestamped transcript text or path to file", "type": "string" }, "is_file_path": { "default": false, "description": "Whether input_text is a file path", "type": "boolean" }, "line_gap": { "default": 4, "description": "Seconds gap for line breaks", "type": "number" }, "paragraph_gap": { "default": 8, "description": "Seconds gap for paragraph breaks", "type": "number" } }, "required": [ "input_text" ], "type": "object" }