mcp-pdf-tools

The Unlicense
13

merge-pdfs

Merge multiple PDF files into a single PDF

Input Schema

NameRequiredDescriptionDefault
input_pathsYesList of input PDF file paths
output_pathYesOutput path for merged PDF

Input Schema (JSON Schema)

{ "properties": { "input_paths": { "description": "List of input PDF file paths", "items": { "type": "string" }, "type": "array" }, "output_path": { "description": "Output path for merged PDF", "type": "string" } }, "required": [ "input_paths", "output_path" ], "type": "object" }