mintpdf
MCP server that converts HTML or Markdown to PDF and can generate PDFs from URLs, with tools generate_pdf and pdf_from_url.
README
<div align="center">
<img src="https://raw.githubusercontent.com/TrendTweekers/mintpdf/main/public/mark.svg" width="64" alt="MintPDF">
MintPDF
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
</div>
Agents write Markdown. People need documents. MintPDF is the missing step: send HTML or Markdown, get a clean PDF back, from your code or straight from an AI agent via MCP.
- MCP native —
generate_pdfandpdf_from_urlover streamable HTTP. Claude can render a document mid-conversation. - Markdown looks right by default — tables, code blocks, blockquotes and headings come out styled, so agent-written documents don't look like a text file.
- No templates — your code or your agent already produced the content; skip the template step.
- Nothing is kept — generated files auto-delete after one hour, no document storage, no account needed to try it.
Quickstart
No signup, no key:
curl -X POST https://mintpdf.dev/v1/pdf \
-H "Content-Type: application/json" \
-d '{"markdown":"# Invoice #42\n\n| Item | Price |\n|---|---|\n| Widget | $9.00 |","pageNumbers":true}' \
--output invoice.pdf
Want more than 3 renders a day? A free key (email only, no card) raises it to 100 a month:
curl -X POST https://mintpdf.dev/v1/keys \
-H "Content-Type: application/json" \
-d '{"email":"you@example.com"}'
# → {"key":"pm_…","daily_limit":100} # 100 renders per month
Then send Authorization: Bearer pm_… with your requests.
Use it from Claude (or any MCP client)
{
"mcpServers": {
"mintpdf": {
"command": "npx",
"args": ["-y", "mintpdf-mcp"]
}
}
}
Prefer the hosted endpoint directly? Use mcp-remote instead:
{
"mcpServers": {
"mintpdf": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://mintpdf.dev/mcp"]
}
}
}
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 |
API
POST /v1/pdf
Body 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 /mcp
MCP streamable-HTTP endpoint, stateless. Same capabilities as the REST API.
Limits
| Tier | Limit | Price |
|---|---|---|
| Anonymous | 3 renders/day per IP | free, no signup |
| Free key | 100 renders/month | free, email only |
| Solo | 2,000 renders/month | $19/month |
Self-host
MintPDF is MIT-licensed; run your own if you'd rather.
npm install
npm run build
npm start # http://localhost:3000
node dist/smoke.js # end-to-end render check
Or with Docker (Chromium and fonts included):
docker build -t mintpdf .
docker run -p 3000:3000 -e BASE_URL=http://localhost:3000 mintpdf
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.
If you want a fuller self-hosted PDF toolchain (Office formats, merging, splitting), Gotenberg is excellent and does more than this does.
How it works
TypeScript, Fastify, Puppeteer driving one shared Chromium (page per request), node:sqlite for keys
and quotas so there are no native dependencies. Requests to private and internal addresses are blocked
both at URL validation and at Chromium's request layer, so embedded resources can't reach them either.
Licence
MIT — see LICENSE.
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。