Skip to content

Merge PDF

Verified

Merge multiple user-provided PDF files by uploading them to Cross-Service-Solutions, polling until completion, then returning a download URL for the merged PDF.

490 downloads
$ Add to .claude/skills/

About This Skill

  • # merge-pdf-files
  • ## Purpose
  • This skill merges multiple PDFs by:
  • 1) accepting multiple PDF files from the user,
  • 2) uploading them to the Cross-Service-Solutions merge API,
  • 3) polling the job status until it is finished,
  • 4) returning the merged PDF download URL.
  • ## Credentials
  • The API requires an API key used as a Bearer token:
  • `Authorization: Bearer <API_KEY>`
  • How the user gets an API key:
  • https://login.cross-service-solutions.com/register
  • Or the user can provide an API key directly.
  • Rule: never echo or log the API key.
  • ## API endpoints
  • Base URL:
  • `https://api.xss-cross-service-solutions.com/solutions/solutions`
  • Create merge job:
  • `POST /api/30`
  • `multipart/form-data` parameters:
  • - `files` (PDF Dokument) — required — multiple PDF files (multiple_files)
  • Get result by ID:
  • `GET /api/<ID>`
  • When done, the response contains:
  • `output.files[]` with `{ name, path }` where `path` is a downloadable URL.
  • ## Inputs
  • ### Required
  • One or more PDF files (binary)
  • An API key (string)
  • ### Optional
  • None (ordering is determined by the provided file list order)
  • ## Output
  • Return a structured result:
  • `job_id` (number)
  • `status` (string)
  • `download_url` (string, when done)
  • `file_name` (string, when available)
  • `input_files` (array of strings)
  • Example output:
  • ```json
  • {
  • "job_id": 456,
  • "status": "done",
  • "download_url": "https://.../merged.pdf",
  • "file_name": "merged.pdf",
  • "input_files": ["a.pdf", "b.pdf", "c.pdf"]
  • }

Use Cases

  • Merge multiple PDF files into a single combined document
  • Combine reports, presentations, and documents into unified PDFs
  • Upload and process PDF files via API for server-side merging
  • Automate multi-PDF merging in document assembly workflows
  • Generate consolidated PDF packages from multiple source files

Pros & Cons

Pros

  • +Compatible with multiple platforms including claude-code, openclaw
  • +Well-documented with detailed usage instructions and examples
  • +Purpose-built for git & version control tasks with focused functionality

Cons

  • -Requires API tokens or authentication setup before first use
  • -No built-in analytics or usage metrics dashboard

FAQ

What does Merge PDF do?
Merge multiple user-provided PDF files by uploading them to Cross-Service-Solutions, polling until completion, then returning a download URL for the merged PDF.
What platforms support Merge PDF?
Merge PDF is available on Claude Code, OpenClaw.
What are the use cases for Merge PDF?
Merge multiple PDF files into a single combined document. Combine reports, presentations, and documents into unified PDFs. Upload and process PDF files via API for server-side merging.

100+ free AI tools

Writing, PDF, image, and developer tools — all in your browser.

Next Step

Use the skill detail page to evaluate fit and install steps. For a direct browser workflow, move into a focused tool route instead of staying in broader support surfaces.