merge-pdfs
Combine multiple PDF files into one document by specifying input paths and an output location using the MCP server’s PDF tools.
Instructions
Merge multiple PDF files into a single PDF
Input Schema
Name | Required | Description | Default |
---|---|---|---|
input_paths | Yes | List of input PDF file paths | |
output_path | Yes | Output 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"
}