用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/TrendTweekers/mintpdf --skill generate-pdf命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | generate-pdf |
| description | Turn HTML or Markdown into a styled PDF, or render a public web page to PDF, and get a download link. |
Use this when a user needs a finished document rather than text: an invoice, a receipt, a report, a summary they will send to someone else.
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
Add "output":"url" to get JSON with a download link (valid one hour) instead of raw bytes.
Remote: https://mintpdf.dev/mcp (streamable HTTP)
Local: npx -y mintpdf-mcp
Tools: generate_pdf (html or markdown in) and pdf_from_url (public URL in).
format (A4, Letter, Legal, A3, A5), landscape, margin (e.g. "18mm"), headerText,
footerText, pageNumbers.
10 renders/day anonymously, 100/month with a free key (POST /v1/keys with an email, no card),
then 3,000/month on Solo ($19), 12,000 on Team ($49) and 50,000 on Scale ($129). Send the key as
Authorization: Bearer pm_….
Generated files are deleted after one hour. No document storage. Requests to private or internal network addresses are refused.