7 min read
How to merge PDF files for free in 2026 — no signup required
By ScoutMyTool Editorial Team · Last updated: 2026-05-17
Introduction
I needed to merge eleven receipts into a single PDF last week so my accountant could stop emailing me about it. I opened the first online tool that came up, dragged the files in, and got hit with a "sign up to merge more than 2 PDFs per day" wall. The second tool wanted my email. The third capped the upload at 100 MB. By the time I actually had a merged file, twenty minutes had gone. The merge itself, on my laptop, takes under three seconds. That gap — between how long PDF merging takes and how long the popular online tools make it take — is the reason this article exists. Below is the workflow I now use, the tool I built it on, and the trade-offs honestly compared.
Step-by-step: merge PDFs in your browser
ScoutMyTool's merge tool runs the entire combine operation in the browser tab itself, using pdf-lib, an open-source JavaScript PDF library. Your files are never uploaded — they are read into a sandboxed memory buffer, combined, and written back as a download. Here is the full workflow, from blank tab to merged file.
- Open the tool. Go to scoutmytool.com/pdf/merge-pdf. The page loads as static HTML; no account screen, no consent modal beyond the standard cookie banner, no waiting for an editor to "initialise". You should see a dashed drop zone within about a second on a typical broadband connection.
- Add your PDFs. You can either drag-and-drop files into the drop zone or click the "Choose files" button and select them from a file picker. The tool accepts between 2 and 30 PDFs per merge. If you have more than 30, run two merges and combine the intermediate results — there is no limit on how many times you can use the tool.
- Reorder if needed. Files appear in the order you added them, which is the order they will be merged. If you need a different sequence (for example, cover page first, then receipts, then summary), drag a file up or down in the list before clicking Merge. Within each file, every page stays in its original order.
- Click "Merge PDFs". The tool reads each file into the browser using the standard FileReader API, parses them with pdf-lib, copies every page into a new document, and writes the result as a Blob. On a recent laptop, a 50 MB job (around 500 pages) finishes in two to four seconds. There is no progress bar staring you down because there is nothing to wait for.
- Download the result. The merged file appears as a standard browser download labelled
merged.pdf. It opens in any PDF viewer — Adobe Reader, Preview, Edge, Chrome, Firefox — because the output is a valid PDF 1.7 document per the published specification.1 - What if a file is password-protected? Encrypted PDFs cannot be merged silently — their content streams remain unreadable even after being loaded. The tool will stop and name the offending file so you can unlock it via the Unlock PDF tool (or by opening it in any viewer and re-saving without a password), then try the merge again. This fail-fast behaviour is intentional: silently producing a corrupt merged PDF would be worse.
- What about size limits? There is no hard cap. The practical limit is your device's RAM, because the entire operation happens in browser memory. A modern laptop with 8 GB of RAM can comfortably handle a few hundred megabytes of PDFs in one merge. If you do hit a memory error, split the job into two batches and merge the intermediate outputs.
How ScoutMyTool compares to Smallpdf, iLovePDF and PDF2Go
The popular online mergers all upload your files to a server, run the merge there, and stream the result back. That model is what lets them charge a subscription — and it is also what creates the upload bottleneck, the size cap, and the per-day quota. Here is how the four tools stack up on the trade-offs that actually matter when you just need a merged file:
| Feature | ScoutMyTool | Smallpdf | iLovePDF | PDF2Go |
|---|---|---|---|---|
| Free for unlimited merges | Yes | 2 per day, then paywall | 1 file per task on free tier | Yes, with 100 MB limit |
| No signup required | Yes | Required after 2 tasks | Required for files >50 MB | Yes |
| Per-file size limit | None (device RAM) | 5 GB Pro / 100 MB free | 200 MB free | 100 MB free |
| Typical 50 MB merge speed | 2-4 s (local) | 40-90 s (upload + process) | 40-90 s (upload + process) | 60-120 s (upload + process) |
| Files leave your device | No (client-side) | Yes (uploaded) | Yes (uploaded) | Yes (uploaded) |
Quotas and limits for the third-party tools are taken from each vendor's public pricing page as of May 2026 and may change. The ScoutMyTool figures are deterministic — they are determined by the open-source pdf-lib library and your device's RAM.
Why "no upload" matters
For a vacation itinerary, server-side merging is probably fine. For a signed contract, a tax return, or a medical record, it is not. The moment a PDF leaves your device, you are trusting a third party with the contents, with their retention policy, and with the security of their storage. Most reputable vendors delete uploads after an hour or two, but "most" and "reputable" are not the words you want next to your payslip. The PDF Association explicitly flags handling of confidential PDFs as a scenario where local processing is the safer default.2
ScoutMyTool's merge tool is auditable: open your browser's network tab while you run a merge and you will see zero requests carrying your file. The bytes never go anywhere except your CPU and your downloads folder.
Related PDF tools on ScoutMyTool
Most people who merge PDFs end up needing one of these next. Each runs client-side with the same no-signup, no-upload model as the merger:
- Split PDF — extract a page range into its own file, or burst every page into a separate PDF.
- Compress PDF — shrink the merged file before emailing it; useful when the combined output is larger than your mail provider's 25 MB attachment limit.
- Rotate PDF — fix sideways scans before or after merging.
- Remove Pages — drop blank or duplicate pages from the merged output.
- Add Page Numbers — paginate the merged document so reviewers can refer to "page 14" rather than "the page with the table".
Frequently asked questions
- Is it really free to merge PDFs with ScoutMyTool?
- Yes. There is no signup, no trial, no paywall, and no per-day cap on how many merges you can run. The tool is funded by unobtrusive display ads on the page — the merge itself runs in your browser at no cost to you.
- Do my PDF files get uploaded to a server?
- No. ScoutMyTool runs the merge entirely client-side using the open-source pdf-lib library. Your files are read in your browser tab, combined locally, and the merged file is written back to your downloads folder. Nothing leaves your machine.
- Is there a file size limit?
- There is no fixed cap. The practical limit is your device's memory — modern laptops can comfortably merge a few hundred megabytes of PDFs. If you hit an out-of-memory error, split the job into two or three batches and then merge the intermediate outputs.
- Can I merge password-protected PDFs?
- No — encrypted PDFs cannot be silently merged because their content streams remain unreadable. ScoutMyTool fails fast with a message naming the protected file. Unlock it first using our /pdf/unlock-pdf tool (or open it in any PDF viewer and re-save it without a password), then re-run the merge.
- Will the page order in my merged PDF match the order I added the files?
- Yes. Files are merged in the order you drop or select them, and within each file every page is preserved in its original order. If you need a different sequence, reorder the files in the list before clicking Merge.
- Does the merged PDF keep bookmarks, form fields, and annotations?
- Pages and visible annotations are preserved. Form fields and document-level bookmarks may not survive a merge because the PDF specification does not define a canonical way to combine them across documents — this limitation applies to virtually every browser-based merger, including ours.
- Why is your tool faster than Smallpdf or iLovePDF for the same files?
- Because there is no network round-trip. Online mergers upload your files to their servers, run the merge there, and stream the result back. On a typical home connection, the upload alone can take 30-90 seconds for a 50 MB job. ScoutMyTool skips all of that — your CPU does the work directly.
Ready to merge?
No signup, files deleted after 1 hour — actually, files never leave your device in the first place, because the entire merge runs in your browser tab.