Simple Document Processing MCP Server

docx_to_pdf

Convert DOCX files to PDF format

Input Schema

NameRequiredDescriptionDefault
inputPathYesPath to the input DOCX file
outputPathYesPath where the output PDF file should be saved

Input Schema (JSON Schema)

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