# Pdf Merge — MCP tool `findutils:pdf_merge`

Combine several PDFs into one, in the order given. Each input is a base64-encoded PDF and the result is a base64-encoded PDF. Pages are copied as they are — nothing is re-rendered, re-encoded or watermarked. An encrypted PDF must be unlocked first.

- Category: documents
- MCP server: https://mcp.findutils.com/ (Streamable HTTP, no API keys, 120 req/min per IP)
- REST endpoint: POST https://api.findutils.com/api/tools/pdf-merge/execute (no API keys, 60 req/min per IP)
- Network tool: fetches a fixed, hard-coded public upstream (never a private host).
- Reference page: https://findutils.com/mcp/pdf-merge/
- Same tool on the other surface: https://findutils.com/api/pdf-merge/

## Connect

```bash
claude mcp add findutils --transport http https://mcp.findutils.com/
```

Claude Desktop (`claude_desktop_config.json`):

```json
{
  "mcpServers": {
    "findutils": {
      "url": "https://mcp.findutils.com/"
    }
  }
}
```

## Call the tool (verified example)

```bash
curl -X POST https://mcp.findutils.com/ \
  -H "Content-Type: application/json" \
  -d '{
    "jsonrpc": "2.0",
    "id": 1,
    "method": "tools/call",
    "params": {
      "name": "pdf_merge",
      "arguments": {
        "pdfs": [
          "JVBERi0xLjcK",
          "JVBERi0xLjcK"
        ]
      }
    }
  }'
```

## Input schema

| Argument | Type | Required | Description |
|---|---|---|---|
| `pdfs` | array | yes | Base64-encoded PDFs, in the order they should appear. At least two. |

Example arguments (verified):

```json
{
  "pdfs": [
    "JVBERi0xLjcK",
    "JVBERi0xLjcK"
  ]
}
```

## Also a REST endpoint

```bash
curl -X POST https://api.findutils.com/api/tools/pdf-merge/execute \
  -H "Content-Type: application/json" \
  -d '{
    "pdfs": [
      "JVBERi0xLjcK",
      "JVBERi0xLjcK"
    ]
  }'

# Parameter schema
curl https://api.findutils.com/api/tools/pdf-merge
```

Full REST reference: https://findutils.com/api/pdf-merge/ · OpenAPI 3.1 spec: https://findutils.com/api/openapi.json

---
Full catalog: POST https://mcp.findutils.com/ with method `tools/list` · https://findutils.com/mcp/ · https://findutils.com/llms.txt
