MCP Catalogs
Home

Convert-Markdown-PDF-MCP

by seanivore·15·Score 38

MCP server that converts Markdown to PDF with VS Code styling using Python's ReportLab.

file-systemproductivitydeveloper-tools
10
Forks
1
Open issues
6 mo ago
Last commit
2d ago
Indexed

Overview

This MCP server provides a simple but effective Markdown to PDF conversion tool. It uses ReportLab to generate PDFs styled after VS Code's markdown preview, ensuring visually appealing output. The server includes both resources (note:// URIs for storing notes) and tools (add-note for managing notes), making it useful for document processing workflows. The implementation is clean and straightforward, with clear examples for both development and production deployment.

Try asking AI

After installing, here are 4 things you can ask your AI assistant:

you:Generate PDF documents from Markdown content
you:Store and process notes programmatically
you:Create formatted reports from markdown files
you:How does the PDF styling compare to VS Code?

When to choose this

Choose this server if you need to convert Markdown documents to professionally styled PDFs and want to integrate this functionality into an MCP-enabled workflow.

When NOT to choose this

Don't choose this if you need advanced PDF customization options, batch processing of multiple files, or conversion of formats other than Markdown.

Tools this server exposes

1 tool extracted from the README
  • add-notename: string, content: string

    Adds a new note to the server

Comparable tools

markdown-to-pdfpuppeteer-mcppandocweasyprint

Installation

Installation

For Claude Desktop:

**MacOS:** ~/Library/Application\ Support/Claude/claude_desktop_config.json

**Windows:** %APPDATA%/Claude/claude_desktop_config.json

{
  "mcpServers": {
    "md-pdf-mcp": {
      "command": "uvx",
      "args": [
        "md-pdf-mcp"
      ]
    }
  }
}

For development:

{
  "mcpServers": {
    "md-pdf-mcp": {
      "command": "uv",
      "args": [
        "--directory",
        "/path/to/your/local/md-pdf-mcp",
        "run",
        "md-pdf-mcp"
      ]
    }
  }
}

FAQ

How does the PDF styling compare to VS Code?
The server uses Python's ReportLab to generate PDFs styled to closely match VS Code's markdown preview appearance.

Compare Convert-Markdown-PDF-MCP with

GitHub →

Last updated · Auto-generated from public README + GitHub signals.