Markdown2PDF MCP Server
Converts Markdown documents to PDF files with support for syntax highlighting, custom CSS styling, page numbers, watermarks, and standard Markdown formatting including headers, lists, tables, links, images, and task lists.
Renders Mermaid diagrams within Markdown documents during PDF conversion, with syntax error messages displayed in the output for debugging.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Markdown2PDF MCP Serverconvert my README.md to PDF with page numbers and a DRAFT watermark"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.

Markdown2PDF MCP Server (markdown2pdf-mcp)
An MCP server for converting Markdown documents to PDF files. This server provides a simple and efficient way to generate PDFs from Markdown content with support for syntax highlighting, custom styling, optional page numbers, and flexible watermark placement (first page only or all pages).
Inspired by Alan Shaw's markdown-pdf.
Features
Convert Markdown to PDF with a single command
Syntax highlighting for code blocks
Custom CSS styling for PDF output
Support for standard Markdown formatting
Mermaid diagram rendering
Modern PDF generation using Chrome's rendering engine
Excellent support for modern web features and fonts
Reliable resource loading and rendering
Optional page numbers rendered via the PDF footer
Watermarks with configurable scope (first page or all pages)
Related MCP server: Markdown + Mermaid to PDF MCP Server
Limitations
The following markdown elements are not supported:
LaTeX math equations (e.g.,
$x^2$or$$\sum_{i=1}^n x_i$$)Complex mathematical formulas or scientific notation
Stick to these supported markdown elements:
Headers (all levels)
Text formatting (bold, italic, strikethrough)
Lists (ordered and unordered)
Code blocks with syntax highlighting
Tables
Blockquotes
Links
Images (both local files and external URLs)
Task lists
Mermaid diagrams
Mermaid Diagrams
To render a Mermaid diagram, use a mermaid code block:
´´´markdown
graph TD;
A-->B;
A-->C;
B-->D;
C-->D;´´´
If there is a syntax error in your diagram, the error message will be rendered in the PDF, helping you to debug it.
Installation (from source)
# Clone the repository
git clone https://github.com/2b3pro/markdown2pdf-mcp.git
# Navigate to the project directory
cd markdown2pdf-mcp
# Install dependencies
npm install
# Build the project
npm run buildInstallation (via npm)
npm install markdown2pdf-mcpUsage
Starting the Server
npm startUsing the MCP Tool
The server provides a single tool create_pdf_from_markdown with the following parameters:
{
// Required parameters
markdown: string; // Markdown content to convert
// Optional parameters with defaults
outputFilename?: string; // Filename for the PDF (e.g., "output.pdf")
paperFormat?: string; // 'letter' (default), 'a4', 'a3', 'a5', 'legal', 'tabloid'
paperOrientation?: string; // 'portrait' (default), 'landscape'
paperBorder?: string; // '2cm' (default), accepts decimal values with CSS units (e.g., '1.5cm', '2.5mm', '0.5in', '10.5px')
watermark?: string; // Optional watermark text (max 15 characters, uppercase)
watermarkScope?: 'all-pages' | 'first-page'; // Defaults to 'all-pages'
showPageNumbers?: boolean; // Defaults to false
}Example with options:
await use_mcp_tool({
server_name: "markdown2pdf",
tool_name: "create_pdf_from_markdown",
arguments: {
markdown: "# Hello World\n\nThis is a test document.",
outputFilename: "output.pdf",
paperFormat: "a4",
paperOrientation: "landscape",
paperBorder: "1.5cm",
watermark: "DRAFT",
watermarkScope: "first-page",
showPageNumbers: true,
},
});Example minimal usage:
await use_mcp_tool({
server_name: "markdown2pdf",
tool_name: "create_pdf_from_markdown",
arguments: {
markdown: "# Hello World\n\nThis is a test document.",
outputFilename: "output.pdf",
},
});Running on Demand with npx
You can run the server without a permanent local install by asking npx to grab the latest package and execute its entrypoint:
npx -y markdown2pdf-mcp@latestThis command installs the package into a temporary workspace and then starts the MCP server via its bundled CLI. Point your MCP-aware client (e.g., Cline or Claude Desktop) to this command to spin up the server on demand.
Configuration
Output Directory
You can configure the output directory in your MCP settings file for apps that use MCP such as Cline or Claude. If not configured, it will save files to $HOME:
{
"mcpServers": {
"markdown2pdf": {
"args": ["/path/to/markdown2pdf-mcp/build/index.js"],
"env": {
"M2P_OUTPUT_DIR": "/path/to/output/directory"
}
}
}
}The tool automatically handles file name conflicts by appending incremental numbers (e.g., output.pdf, output-1.pdf, output-2.pdf).
Large File Support
The tool automatically handles large markdown files with:
Dynamic Timeouts: Automatically scales based on content size (up to 5 minutes for very large files)
Memory Limits: 4GB memory allocation for Chrome to handle complex documents
Size Validation: Maximum 10MB file size with clear error messages
Progress Tracking: Shows content size and estimated processing time
For very large files (1300+ lines), the tool will:
Warn you about extended processing time
Automatically increase timeouts
Display content size in the response
Provide detailed error messages if processing fails
Verbose Logging
Enable detailed logging for debugging:
{
"mcpServers": {
"markdown2pdf": {
"command": "node",
"args": ["/path/to/markdown2pdf-mcp/build/index.js"],
"env": {
"M2P_OUTPUT_DIR": "/path/to/output/directory",
"M2P_VERBOSE": "true"
}
}
}
}This will log processing steps to stderr without interfering with MCP communication.
Prefer a locally built version? Swap
"command"back tonodeand point"args"to the compiledbuild/index.jspath instead of usingnpx, for example:"args": ["/path/to/markdown2pdf-mcp/build/index.js"].
Dependencies
@modelcontextprotocol/sdk - MCP SDK for server implementation
remarkable - Markdown parser
highlight.js - Syntax highlighting
puppeteer - Modern PDF generation using Chrome for Testing (v131.0.6778.204)
Chrome Version
This package uses Chrome v131.0.6778.204 for consistent PDF generation across all installations. This version is automatically installed when you run npm install.
tmp - Temporary file handling
Development
# Build the project
npm run build
# Start the server
npm startLicense
MIT
Contributing
Fork the repository
Create your feature branch (
git checkout -b feature/amazing-feature)Commit your changes (
git commit -m 'Add some amazing feature')Push to the branch (
git push origin feature/amazing-feature)Open a Pull Request
Available Tools
1 toolcreate_pdf_from_markdownA
Convert markdown content to PDF. Supports basic markdown elements like headers, lists, tables, code blocks, blockquotes, images (both local and external URLs), and Mermaid diagrams. Note: Cannot handle LaTeX math equations. Mermaid syntax errors will be displayed directly in the PDF output.
| Name | Required | Description | Default |
|---|---|---|---|
| markdown | Yes | Markdown content to convert to PDF | |
| outputFilename | No | Create a filename for the PDF file to be saved (default: "final-output.pdf"). The environmental variable M2P_OUTPUT_DIR sets the output path directory. If directory is not provided, it will default to user's HOME directory. | |
| paperFormat | No | Paper format for the PDF (default: letter) | letter |
| paperOrientation | No | Paper orientation for the PDF (default: portrait) | portrait |
| paperBorder | No | Border margin for the PDF (default: 2cm). Use CSS units (cm, mm, in, px) | 20mm |
| watermark | No | Optional watermark text (max 15 characters, uppercase), e.g. "DRAFT", "PRELIMINARY", "CONFIDENTIAL", "FOR REVIEW", etc | |
| watermarkScope | No | Control watermark visibility: "all-pages" repeats on every page, "first-page" displays on the first page only (default: all-pages) | all-pages |
| showPageNumbers | No | Include page numbers in the PDF footer (default: false) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden and adds valuable behavioral context beyond basic conversion. It discloses that Mermaid syntax errors will be displayed directly in the PDF output, which is a key behavioral trait not inferable from the schema. It could improve by mentioning output handling (e.g., file saving behavior) or error conditions beyond Mermaid.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is appropriately sized and front-loaded, starting with the core purpose and immediately listing supported elements and limitations. Every sentence earns its place by providing essential information without redundancy, making it efficient and well-structured for quick understanding.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the complexity (8 parameters, no output schema, no annotations), the description is mostly complete. It covers the tool's purpose, supported features, and key limitations. However, it lacks details on output handling (e.g., where the PDF is saved or returned) and error scenarios beyond Mermaid, which could enhance completeness for a tool with many parameters.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema description coverage is 100%, so the schema fully documents all 8 parameters. The description adds no specific parameter details beyond what the schema provides, such as explaining markdown syntax or watermark usage. Thus, it meets the baseline of 3 by not contradicting the schema but adds no extra semantic value.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose with a specific verb ('convert') and resource ('markdown content to PDF'), and distinguishes it by detailing supported elements (headers, lists, tables, etc.) and limitations (no LaTeX math). Since there are no sibling tools, it fully defines its scope without redundancy.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage by listing supported markdown elements and noting limitations (e.g., 'Cannot handle LaTeX math equations'), which helps guide when it's appropriate. However, it lacks explicit when-to-use scenarios, prerequisites, or comparisons to alternatives, as there are no sibling tools mentioned.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
TDQS
With only one tool, there is no possibility of ambiguity or overlap between tools. The tool's purpose is clearly defined and distinct by default.
The single tool name follows a clear verb_noun pattern (create_pdf_from_markdown), which is consistent and predictable. There are no other tools to compare against, so no inconsistency exists.
A single tool is too few for a server named 'Markdown2PDF MCP Server', as it suggests a limited scope that might lack essential operations like configuration, template management, or batch processing. This minimal set could hinder agent workflows.
The tool surface is severely incomplete for a markdown-to-PDF conversion domain. It only provides a basic conversion tool, missing operations such as setting PDF options, handling templates, managing fonts, or supporting advanced features like LaTeX math equations, which are common in this domain.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Convert Markdown, HTML, and web pages to high-quality PDF with Prince.
Render Markdown and LLM output into accessible PDF/UA-1 PDFs. No headless Chromium.
Markdown to PDF: headings, bold, code, lists, rules. A4/Letter/Legal. Free 30/hr. MCP + REST.
Generate PDF, Word (.docx) and PowerPoint (.pptx) documents from Markdown over MCP.
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceProvides tools for converting Markdown content and files into professional PDF documents with full support for Mermaid diagrams and LaTeX rendering. It allows for high-quality output customization, including paper size, table of contents, and syntax highlighting styles.
- FlicenseNot gradedqualityDmaintenanceConverts Markdown files and standalone Mermaid diagrams into high-quality PDF or PNG documents using Puppeteer and SVG rendering. It supports custom CSS styling and provides tools for professional document generation from markdown-based content.4
- FlicenseNot gradedqualityDmaintenanceConverts Markdown files and raw content into professionally styled PDFs with full support for Mermaid diagrams and syntax highlighting. It offers customizable page formats, margins, and modern typography for high-quality document generation.11
- AlicenseBqualityDmaintenanceConverts Markdown files and content to styled PDFs with S3 integration, Mermaid diagrams, and ApexCharts support, supporting stdio, HTTP, and SSE transport modes.3358MIT
Appeared in Searches
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/LAMENTIS1/mcp_pdf'
If you have feedback or need assistance with the MCP directory API, please join our Discord server