TranscriptionTools MCP Server

summary_text

Generates intelligent summaries using ACE cognitive methodology

Input Schema

NameRequiredDescriptionDefault
constraint_typeNoType of constraint to apply
constraint_valueNoValue for the specified constraint
input_textYesText to summarize or path to file
is_file_pathNoWhether input_text is a file path

Input Schema (JSON Schema)

{ "properties": { "constraint_type": { "description": "Type of constraint to apply", "enum": [ "time", "chars", "words", null ], "type": "string" }, "constraint_value": { "description": "Value for the specified constraint", "type": "number" }, "input_text": { "description": "Text to summarize or path to file", "type": "string" }, "is_file_path": { "default": false, "description": "Whether input_text is a file path", "type": "boolean" } }, "required": [ "input_text" ], "type": "object" }