Turn HTML or Markdown into a clean, styled PDF and get a download link.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
We haven't yet run this listing's install command through our automated sandbox check. This isn't a red flag β we're steadily working through the catalog.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
HTML & Markdown β PDF, as a REST API and an MCP server.
No template editor. No template IDs. No dashboard. No signup to try.
Try it Β· MCP setup Β· API Β· Self-host Β· Security Β· Limitations
Send HTML or Markdown, get a PDF back. It is Chromium under the hood, with the print CSS already worked out so tables don't split across pages, table headers repeat, and Markdown comes out looking like a document rather than a text file.
break-inside, repeating thead, orphans and widows, and headers
and footers that actually inherit your styling. See How it works.generate_pdf and pdf_from_url over streamable HTTP, so an agent can produce a
document mid-conversation.No signup, no key:
Want more than 10 renders a day? A free key (email only, no card) raises it to 100 a month:
Then send Authorization: Bearer pm_β¦ with your requests.
Prefer the hosted endpoint directly? Use mcp-remote instead:
Restart your client, then just ask:
"Summarise this thread as a one-page brief with page numbers and give me a PDF."
| Tool | Input | Returns |
|---|---|---|
generate_pdf | html or markdown, plus options | download URL, valid 1 hour |
pdf_from_url | url (public http/https), plus options | download URL, valid 1 hour |
POST /v1/pdfBody takes exactly one source, plus options:
| Field | Type | Notes |
|---|---|---|
html | string | Full document or fragment |
markdown | string | Rendered with the default stylesheet |
url | string | Public page to render. Private/internal addresses are blocked |
format | string | A4 (default), Letter, Legal, A3, A5 |
landscape | boolean | default false |
margin | string | all sides, e.g. "18mm" |
headerText / footerText | string | small text on every page |
pageNumbers | boolean | adds 3 / 7 to the footer |
output | "pdf" | "url" | default returns PDF bytes; "url" returns JSON with a link |
POST /v1/keys{"email":"you@example.com"} β a free key. No card, no verification loop.
POST /mcpMCP streamable-HTTP endpoint, stateless. Same capabilities as the REST API.
A ready-made collection covering every endpoint and option lives in
postman/. Import it by link:
The first request runs with no key at all, and fetching a free key stores it into the collection variable automatically, so the rest of the collection works straight after.
| Tier | Limit | Price |
|---|---|---|
| Anonymous | 10 renders/day per IP | free, no signup |
| Free key | 100 renders/month | free, email only |
| Solo | 3,000 renders/month | $19/month |
| Team | 12,000 renders/month | $49/month |
| Scale | 50,000 renders/month | $129/month |
MintPDF is MIT-licensed; run your own if you'd rather.
Or pull the published image, which has Chromium and the fonts baked in:
Then it is the same API on your own machine, with no limits and nothing leaving it:
Images are built and published by CI on every change, and each is smoke-tested by starting the
container and rendering a real PDF from it before being tagged. Tags are latest and the short
commit SHA. Building it yourself works too:
Environment: BASE_URL (used in download links), DATA_DIR (defaults to /tmp/mintpdf; mount a
volume to persist keys), ANON_DAILY_LIMIT, FREE_MONTHLY_LIMIT, SOLO_MONTHLY_LIMIT,
TEAM_MONTHLY_LIMIT, SCALE_MONTHLY_LIMIT, OVERAGE_FACTOR, RENDER_CONCURRENCY,
RENDER_QUEUE, RENDER_QUEUE_WAIT_MS.
Every render is a Chromium tab, so memory bounds concurrency long before CPU or cost does. Unbounded, a traffic spike opens a tab per request until the OOM reaper kills the container and every request fails, including ones nearly finished. Measured here: 30 concurrent renders with no gate left 30 orphaned Chrome processes and an unusable machine.
RENDER_CONCURRENCY renders run at once, RENDER_QUEUE more may wait, and anything beyond that is
refused immediately with 503 and a Retry-After rather than being allowed to pile up. Turning
some callers away in under a second is strictly better than serving everyone a timeout.
Code defaults are conservative (3 and 20). Measured on one small Railway instance at 10 and 70:
| Burst | Served | Refused | Median | Wall clock | Instance after |
|---|---|---|---|---|---|
| 45 | 45 | 0 | 1.5s | 2.3s | healthy |
| 120 | 81 | 39 | 3.0s | 4.0s | healthy |
| 250 | 80 | 170 | 3.4s | 4.4s | healthy, 0.24s homepage |
Roughly 18 renders a second sustained, with the refused share answered in under 2.7s. Raise the numbers only against a measurement on your own instance size, never on hope.
If you want a fuller self-hosted PDF toolchain (Office formats, merging, splitting), Gotenberg is excellent and does more than this does.
This service renders HTML and URLs supplied by anyone, so the interesting questions are about what that content can reach.
Submitted HTML executes JavaScript. It has to: Mermaid diagrams and KaTeX maths are rendered in the page. Treat the renderer as running untrusted code, which is why the network restrictions below matter more than they would for a static converter.
SSRF is blocked at two layers.
url is parsed, restricted to http/https, and resolved. If any resolved address
is private, the request is refused with a 400 before a browser is involved.fetch() from submitted JavaScript, not just the URL you asked for.The second layer resolves rather than trusting the hostname, and caches only refusals, never approvals: caching "this host is public" would reopen the exact hole the check exists to close. Unresolvable names fail closed.
Being precise about what that does and does not achieve: a DNS-rebinding attempt can no longer wait out a cached approval, so it has to win a race between this lookup and Chromium's own, on every request. That is a much narrower target than a fixed window, but it is a narrowed race rather than a closed door. Eliminating it entirely means pinning the resolved address at the socket layer, which is not implemented.
Blocked: loopback, 0.0.0.0, RFC1918, CGNAT (100.64/10), link-local and cloud metadata
(169.254.169.254); IPv6 loopback, unspecified, link-local, site-local, unique-local, multicast,
NAT64 and Teredo; IPv4-mapped and IPv4-compatible forms in either spelling, so ::ffff:10.0.0.1
and ::ffff:a00:1 are the same address and both are refused; localhost/.local/.internal
names; any public hostname that resolves to a private address; and every scheme except http, https,
data and blob.
Addresses are judged from their bytes rather than by matching text, because the same address has many spellings and a text match catches one and misses the rest.
There is a test suite for exactly this, and it is meant to be run rather than trusted:
It checks the bypasses above and that ordinary rendering still works, because a guard that also blocks web fonts is a different bug rather than a fix.
The IPv6 parser has its own table of adversarial literals, since an invalid string silently becoming a valid address is the failure that matters in this kind of code:
Factual signals from GitHub, npm, and our automated checks β not a rating.
No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/mintpdf)<a href="https://allmcps.com/mcp/mintpdf"><img src="https://allmcps.com/api/badge/mintpdf?style=directory" alt="MintPDF on AllMCPs" /></a>