Simple Document Processing MCP Server

html_cleaner

Clean HTML by removing unnecessary tags and attributes

Input Schema

NameRequiredDescriptionDefault
inputPathYesPath to the input HTML file
outputDirYesDirectory where cleaned HTML should be saved

Input Schema (JSON Schema)

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