Simple Document Processing MCP Server

pdf_merger

Merge multiple PDF files into one

Input Schema

NameRequiredDescriptionDefault
inputPathsYesPaths to the input PDF files
outputDirYesDirectory where merged PDFs should be saved

Input Schema (JSON Schema)

{ "properties": { "inputPaths": { "description": "Paths to the input PDF files", "items": { "type": "string" }, "type": "array" }, "outputDir": { "description": "Directory where merged PDFs should be saved", "type": "string" } }, "required": [ "inputPaths", "outputDir" ], "type": "object" }