pdf_merger
Combine multiple PDF files into a single document using the Simple Document Processing MCP Server. Specify input PDF paths and output directory for efficient file management.
Instructions
Merge multiple PDF files into one
Input Schema
Name | Required | Description | Default |
---|---|---|---|
inputPaths | Yes | Paths to the input PDF files | |
outputDir | Yes | Directory 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"
}