Search "merge PDF online" and you get back two dozen tools that all promise the same thing: drag in your files, get a combined PDF. What almost none of them say up front is that your files are being uploaded to their servers, processed in their cloud, and stored there for some retention window — anywhere from "deleted within an hour" to "we keep it for as long as we want". For a vacation photo album that does not matter. For a signed contract, a tax return, a medical record, or a confidential business document, it absolutely does. This is the guide for merging PDFs without uploading them.
Why uploading is the default
Until about 2020, browsers could not really process PDF files well. PDF is a complicated format (it can contain fonts, images, forms, JavaScript, and encrypted streams), and the libraries to manipulate it were server-only. So the entire generation of free PDF tools — Smallpdf, iLovePDF, PDF24, Sejda, Soda PDF, and dozens of clones — built their architecture around uploading. Your browser sends the files, a server merges them, you download the result. It works, but it means a third party sees every PDF you touch.
Things changed around 2021. WebAssembly matured. Libraries like pdf-lib and pdfjs-dist got fast enough to do real PDF manipulation directly in the browser. Suddenly it was possible to merge two PDFs without ever sending them anywhere. Most of the old tools never updated their architecture, so most "free online PDF mergers" still upload your files in 2026. A small number do not. Knowing which is which is the entire point of this guide.
The short answer
Use ToolHub PDF Merge
Free tool
Open PDF Merge
Combine multiple PDFs into one
How to verify a tool actually runs locally
You do not have to take any tool's word for it. Modern browsers let you check what is actually happening when you click "merge".
1. Open DevTools before you upload
On any laptop browser, press F12 (or Cmd-Option-I on Mac) before you select your PDFs. Switch to the Network tab. If a tool is processing locally, you will see zero network requests after you drop in your files. If it is uploading, you will see a request with your PDF in the request body — often a multi-megabyte POST to /upload or /api/merge.
2. Try it offline
Truly local tools work without an internet connection once the page is loaded. Open the merger page, turn off your wifi, and try again. If the merge works, you have proof it is client-side. If it spins forever or shows a "no connection" error, the tool needs a server.
3. Check the privacy policy
Server-side tools have to disclose what they do with your files. Look for phrases like "files are deleted after X hours" — that language only exists because files are uploaded in the first place. A tool that runs locally typically says "we never see your files" or "all processing happens in your browser".
Three browser-only ways to merge PDFs
Option 1: ToolHub PDF Merge (recommended)
Open toolhub.buzz/pdf-merge, drag your PDFs in, drag to reorder, click merge. The output downloads to your device. Files never leave your browser. No signup, no quota, no ads-walled premium tier. It uses the open-source pdf-lib library under the hood, the same code you could install yourself.
Free tool
Try it now
Combine multiple PDFs into one
Option 2: Local desktop tools
For maximum control on a desktop, three tools stand out:
- PDF24 Creator (Windows, free) — installs a print driver and a desktop app. Slightly old-school UI but fully offline.
- macOS Preview (free, built in) — open the first PDF in Preview, drag others into the sidebar, save as PDF. Done in 15 seconds.
- PDFsam Basic (cross-platform, free) — open source, batch-friendly, no internet needed.
Option 3: Command line (developers)
If you live in a terminal, pdftk (PDF Toolkit) is the classic tool:
pdftk a.pdf b.pdf c.pdf cat output merged.pdf
qpdf does the same with a more active maintainer:
qpdf --empty --pages a.pdf b.pdf c.pdf -- merged.pdf
When uploading is actually fine
Privacy paranoia has limits. If you are merging:
- A folder of cat photos for your scrapbook
- Public marketing materials your company already published
- Lecture notes you would post on a study group anyway
- A book chapter you have permission to share
...then it does not really matter whether processing happens on your device or a server in Frankfurt. The privacy concern is for documents whose contents could harm you if leaked. Signed contracts. Tax returns. Medical records. HR documents. Bank statements. Anything with a Social Security number, account number, or signature.
What about file size?
The "but client-side cannot handle big files" argument is a myth at this point. Modern browsers can comfortably merge PDFs up to several hundred megabytes. A 200-page scanned report (50 MB) merges in 2-3 seconds on a laptop. A 1,000-page technical manual takes 10-20 seconds. The bottleneck is your device's CPU and RAM, not the technology.
For truly enormous files (multi-gigabyte PDFs are rare but they exist in archives), local desktop tools or command-line tools will handle them better. The browser is still constrained by per-tab memory limits.
The argument for paying for a desktop app
If you merge PDFs as part of your job — paralegals, accountants, anyone in compliance — a paid desktop tool like Adobe Acrobat, Foxit, or PDFelement is worth it. You get OCR for scanned documents, real editing (not just merge), redaction, and per-document logging for audit trails. The "free tool" market starts to break down once you need those features.
For occasional personal use, the free browser-based tools are more than enough. The point of this guide is to use one that does not upload your files.
Common questions
Is there a file count limit?
Not on ToolHub. We have merged 50+ PDFs in a single operation with no issues. Server-based tools typically limit you to 10-25 per merge in their free tier to push you to a paid plan.
Can I drag to reorder pages?
Yes — ToolHub PDF Merge has a reorder UI before you finalize. For page-by-page reordering within a single document (not just between documents), use our PDF Organize tool, which also runs in your browser.
Will the output be smaller?
Merging does not compress. The output PDF size is roughly the sum of the input PDF sizes. If you want a smaller file, run the merged output through our PDF Compress tool afterwards.
Does it work on mobile?
Yes. ToolHub PDF Merge works in iOS Safari and Android Chrome. Performance on mobile is somewhat slower than desktop, but for merging 2-5 files it is well under 10 seconds.
What about Acrobat?
Adobe Acrobat Pro merges PDFs perfectly and is the gold standard. The downside is the price (US$20/month or US$200/year for a single user) and that the free Acrobat Reader cannot merge. For occasional use, browser-based tools are a much better fit.