docx_to_html
Convert DOCX files to HTML format while maintaining original structure and layout using Simple Document Processing MCP Server.
Instructions
Convert DOCX to HTML while preserving formatting
Input Schema
Name | Required | Description | Default |
---|---|---|---|
inputPath | Yes | Path to the input DOCX file | |
outputDir | Yes | Directory 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"
}