Simple Document Processing MCP Server

text_formatter

Format text with proper indentation and line spacing

Input Schema

NameRequiredDescriptionDefault
inputPathYesPath to the input text file
outputDirYesDirectory where formatted file should be saved

Input Schema (JSON Schema)

{ "properties": { "inputPath": { "description": "Path to the input text file", "type": "string" }, "outputDir": { "description": "Directory where formatted file should be saved", "type": "string" } }, "required": [ "inputPath", "outputDir" ], "type": "object" }