Simple Document Processing MCP Server

docx_to_html

Convert DOCX to HTML while preserving formatting

Input Schema

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

Input Schema (JSON Schema)

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