Docweave vs PDFMonkey
Docweave is an MCP-native PDF/document-generation API: one REST call — or one MCP tool call — turns HTML, a URL, or a template + JSON into a PDF, billed per document. PDFMonkey is a template-based PDF generation service with a visual template editor; the biggest reason teams evaluating it consider Docweave instead is MCP-native access for AI agents combined with per-document pricing rather than per-page or credit-based billing.
Where Docweave differs
| Docweave | PDFMonkey | |
|---|---|---|
| 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 | Template + JSON (visual editor) |
| Rendering | Chromium | See provider docs |
Switching from PDFMonkey
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 PDFMonkey alternative?
For template-based generation, the shape is familiar: bind JSON data into a stored template and get a PDF back. Docweave accepts a template + JSON, raw HTML, or a URL, 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 a visual template editor does not?
An open-source, MCP-native generate_pdf tool (npx @docweave/mcp) that any MCP client — Claude, Cursor, and others — can call directly, alongside raw HTML and URL sources for cases where a stored template isn't the right fit.
How does pricing compare?
Many template-based PDF services bill per document generated within tiered plans or credit packs. Docweave bills per document rather than per page, so a long report and a one-page receipt are priced the same way. Check PDFMonkey'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