Simple Document Processing MCP Server

text_diff

Compare two text files and show differences

Input Schema

NameRequiredDescriptionDefault
file1PathYesPath to the first text file
file2PathYesPath to the second text file
outputDirYesDirectory where diff result should be saved

Input Schema (JSON Schema)

{ "properties": { "file1Path": { "description": "Path to the first text file", "type": "string" }, "file2Path": { "description": "Path to the second text file", "type": "string" }, "outputDir": { "description": "Directory where diff result should be saved", "type": "string" } }, "required": [ "file1Path", "file2Path", "outputDir" ], "type": "object" }