Docweave vs Doppio
Docweave is an MCP-native PDF/document-generation API: one REST call turns HTML, a URL, or a template + JSON into a PDF, billed per document. Doppio is a Puppeteer-as-a-service PDF and screenshot API — if you are building for AI agents or want an open-source generate_pdf tool and per-document pricing rather than managing browser automation yourself, that is where Docweave differs.
Where Docweave differs
| Docweave | Doppio | |
|---|---|---|
| MCP-native tool | generate_pdf, open source (npx @docweave/mcp) | See provider docs |
| Pricing model | Per document | See provider pricing |
| Sources | HTML, URL, template + JSON | HTML, URL (Puppeteer-driven) |
| Rendering | Chromium | Puppeteer / headless Chrome |
Switching from Doppio
The request shape is familiar — POST a source, get a PDF back:
curl https://docweave.dev/api/v1/pdf \
-H "Authorization: Bearer dw_live_your_key" \
-H "Content-Type: application/json" \
-H "Accept: application/pdf" \
-d '{
"source": { "type": "html", "html": "<h1>Invoice #1024</h1>" },
"options": { "format": "A4", "margin": "20mm" }
}' \
--output invoice.pdfFAQ
Is Docweave a drop-in Doppio alternative?
For HTML/URL-to-PDF, the shape is familiar: you POST a source and get a PDF back. Docweave accepts raw HTML, a URL, or a template + JSON, renders with Chromium, and returns the file. The main additions are a first-class MCP server and per-document pricing.
What does Docweave offer that Doppio does not?
An open-source, MCP-native generate_pdf tool (npx @docweave/mcp) that any MCP client — Claude, Cursor, and others — can call directly, plus template + JSON rendering so you can store a layout once and bind data into it. Doppio is built around a Puppeteer-as-a-service API and its own client SDKs; check its current docs for the full feature set.
How does pricing compare?
Many browser-automation PDF APIs bill per page, per credit, or per browser-minute. Docweave bills per document, so a long report and a one-page receipt are priced the same way. Check Doppio's current pricing page for exact numbers.
Can I use Docweave from an AI agent?
Yes. Add the Docweave MCP server and your agent gets a generate_pdf tool — one tool call instead of HTTP plumbing, with built-in idempotency so it never double-generates the same document.
Try the MCP-native PDF API.
Get an API key