npm pdf-it-mcpstdioMITupdated 2mo ago
A Model Context Protocol (MCP) server and Claude Code skill that turns markdown into PDFs that look like they were made on purpose. Cover page, table of contents, code blocks that hold across page breaks, page-numbered footer. One command from your Claude session to a file you can send to a client.
pdf it 能做什么?
pdf-it
A Model Context Protocol (MCP) server and Claude Code skill that turns markdown into PDFs that look like they were made on purpose. Cover page, table of contents, code blocks that hold across page breaks, page-numbered footer. One command from your Claude session to a file you can send to a client.
Fonts ship inside the package, so every PDF looks the same on every machine. Nothing to install, nothing to configure.

Why this exists
Every Claude Code research session ends the same way: a wall of useful markdown and no clean way to turn it into a PDF a person would actually want to read.
Chrome print: takes 30 seconds, output looks like a Word doc. Manual HTML conversion: 10 minutes per document. Pandoc: works but defaults look like a 2008 academic paper. None of it produces an artifact you would send to a client.
pdf-it is one command. The output is designed by default.

Install
npm install -g pdf-it-mcp
Or run on demand with npx pdf-it-mcp.
Requirements
- Node.js 20 or newer
- Nothing else to install. The renderer and fonts ship inside the package.
Configure
Claude Desktop
Edit claude_desktop_config.json:
{
"mcpServers": {
"pdf-it": {
"command": "npx",
"args": ["-y", "pdf-it-mcp"]
}
}
}
Claude Code
claude mcp add pdf-it -- npx -y pdf-it-mcp
Cursor
Add to ~/.cursor/mcp.json with the same shape as Claude Desktop.
Cline / Continue / Zed / Goose
Standard MCP config. Same npx -y pdf-it-mcp command.
Use
In any Claude session connected to the server, ask:
Save this as a PDF
Or any of these phrasings: export as PDF, make a PDF report from this, turn this into a PDF, /pdf. The skill picks up the request and routes it through pdf-it. The output lands in ~/Documents/pdf-it/ by default.
Tools
| Tool | Description |
|---|---|
generate_pdf |
Convert markdown into a PDF. Accepts a template (research-report or plain), optional title and author for the cover, and an optional output path. |
list_templates |
Return the list of available templates with descriptions. |
generate_pdf parameters
| Parameter | Required | Description |
|---|---|---|
content |
yes | Markdown string to convert |
title |
no | Shown on the cover and in the page footer |
author |
no | Shown on the cover above the date |
output_path |
no | Absolute path for the output. Defaults to ~/Documents/pdf-it/{slug}-{timestamp}.pdf |
template |
no | research-report (default) or plain |
Templates
| Name | Description |
|---|---|
research-report |
Cover page with title, author, and date. Auto-generated table of contents from H1 and H2 headings. Body with proper hierarchy. Footer with title and page number. Best for research, summaries, design docs, reports. |
plain |
No cover, no TOC. Dense body content only. Best for short notes and quick exports. |
Skill
This package ships with a Claude Code skill at SKILL.md. Trigger phrases the skill responds to:
save this as PDFexport as PDFmake a PDF report from thisturn this into a PDFgenerate a PDF/pdf
See SKILL.md for the full skill spec.
Output
By default PDFs are written to ~/Documents/pdf-it/{slug}-{timestamp}.pdf. Pass output_path to override.
Design
Three families ship inside the package:
- Newsreader for the cover title (display 60, light) and body H1 (display 32). High-contrast serif that holds editorial weight at large sizes.
- DM Sans for H2, H3, table type, and the TOC heading. Quieter sub-hierarchy.
- JetBrains Mono for page numbers, metadata, code, and figure captions.
Pure white paper, near-black ink (#111113), secondary ink for date and table cells (#2B2B2E), muted gray for page numbers and date (#7A7A7E), hairline borders (#E6E6E6). No accent colors. Code blocks render without syntax highlighting on purpose: color choices in PDFs age badly.
Every value lives in src/templates/design-tokens.ts as the single source of truth. If you want a different design language, fork the components. They live in src/templates/components/ and are plain React-PDF components with a small surface area.
How it works
- Parse: remark converts your markdown into an AST.
- Compose: the AST becomes typed React components (Cover, TOC, and body primitives like H1/H2/H3, Paragraph, CodeBlock, Blockquote, Table, lists, and charts).
- Render:
@react-pdf/rendererrasterizes the React tree into a deterministic PDF with embedded fonts and TOC anchors. - Output: the PDF lands in
~/Documents/pdf-it/{slug}-{timestamp}.pdfwith title/author metadata embedded.
Total time: typically sub-second for a 5-page document, 1-2 seconds for a 30-page document.
Recognition
Listed on npm, Glama, and LobeHub.
Disclaimer
This is an unofficial, community-built tool. It is not affiliated with, endorsed by, or sponsored by Anthropic PBC. Claude and Claude Code are trademarks of Anthropic PBC.
pdf-it runs locally and ships its own renderer (@react-pdf/renderer) and fonts. Use at your own risk. The author accepts no liability for issues arising from misuse, prompt injection, bugs, or rendering failures.
License
MIT. See LICENSE.
安装
把 pdf it 添加到你的客户端。选择你正在使用的那个。
claude mcp add pdf-it-mcp -- npx -y pdf-it-mcpcodex mcp add pdf-it-mcp -- npx -y pdf-it-mcpamp mcp add pdf-it-mcp -- npx -y pdf-it-mcp{
"mcpServers": {
"pdf-it-mcp": {
"command": "npx",
"args": [
"-y",
"pdf-it-mcp"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"pdf-it-mcp": {
"command": "npx",
"args": [
"-y",
"pdf-it-mcp"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
code --add-mcp '{"name":"pdf-it-mcp","command":"npx","args":["-y","pdf-it-mcp"]}'Or add the block manually to `.vscode/mcp.json` under `servers`.
{
"mcpServers": {
"pdf-it-mcp": {
"command": "npx",
"args": [
"-y",
"pdf-it-mcp"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"pdf-it-mcp": {
"command": "npx",
"args": [
"-y",
"pdf-it-mcp"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"pdf-it-mcp": {
"command": "npx",
"args": [
"-y",
"pdf-it-mcp"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"pdf-it-mcp": {
"type": "local",
"command": "npx",
"args": [
"-y",
"pdf-it-mcp"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"pdf-it-mcp": {
"command": {
"path": "npx",
"args": [
"-y",
"pdf-it-mcp"
]
}
}
}
}Add to your Zed `settings.json`.
npx -y pdf-it-mcpRun `goose configure`, choose **Add Extension → Command-line Extension**, and paste this command.
2 个工具
pdf it 向已连接的智能体提供 2 个工具。
- generate_pdf
- Convert markdown into a PDF. Accepts a template (`research-report` or `plain`), optional title and author for the cover, and an optional output path.
- list_templates
- Return the list of available templates with descriptions.
评分
70 / 100
良好
- 文档25/25
- 维护16/25
- 可信度13/20
- 能力4/15
- 安装体验12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 53 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 2 tool(s) documented
- Provides prompt templates
- Provides resources
- 12 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
版本历史
| 版本 | 发布于 |
|---|---|
| 2.1.0最新 | 2026年8月2日 |
| 2.0.0 | 2026年6月6日 |