npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

markdown-to-pdf-mcp

v1.0.0

Published

A FastMCP tool for converting Markdown files to PDF format

Readme

Markdown to PDF MCP Tool

A FastMCP-based tool for converting Markdown files to PDF format. This tool can be easily integrated into AI agents that support the Model Context Protocol (MCP).

Features

  • Convert Markdown files to PDF documents
  • Convert Markdown text content to PDF documents
  • Clean and professional PDF output
  • Easy integration with MCP-compatible AI agents

Prerequisites

Before installing this tool, make sure you have:

  • Node.js (v14 or higher)
  • Python (v3.7 or higher)
  • Pip (Python package installer)

Installation

npm install markdown-to-pdf-mcp

During installation, the required Python dependencies will be automatically installed:

  • fastmcp
  • reportlab

Usage

As a standalone tool

npx markdown-to-pdf-mcp

In MCP-compatible applications

The tool exposes two functions:

  1. convert_markdown_to_pdf(file_path, output_path) - Converts a Markdown file to PDF

    • file_path: Path to the markdown file to convert
    • output_path: Path where the PDF should be saved (optional, defaults to same location with .pdf extension)
  2. convert_markdown_text_to_pdf(content, output_path) - Converts Markdown text content to PDF

    • content: Markdown text content to convert
    • output_path: Path where the PDF should be saved

Integration with MCP Servers

To use this tool with other MCP-compatible applications, you can reference the provided mcpServers.json configuration:

{
  "servers": [
    {
      "name": "Markdown to PDF Converter",
      "description": "A FastMCP tool for converting Markdown files to PDF format",
      "command": "npx",
      "args": ["markdown-to-pdf-mcp"],
      "env": {
        "PYTHONIOENCODING": "utf-8"
      }
    }
  ]
}

Example Usage

With Claude Desktop

  1. Add the server configuration to your Claude Desktop configuration
  2. Use prompts like:
    • "Convert my README.md file to PDF"
    • "Turn this markdown content into a PDF document"

Programmatic Usage

If you're building an MCP-compatible application:

// Example MCP client usage
const result = await client.callTool({
  name: "convert_markdown_to_pdf",
  arguments: {
    file_path: "/path/to/document.md",
    output_path: "/path/to/document.pdf"
  }
});

Troubleshooting

If you encounter issues:

  1. Make sure Python is installed and available in your PATH
  2. Check that the required Python packages are installed:
    pip install fastmcp reportlab
  3. Ensure you have proper file permissions for reading input files and writing output files

License

MIT

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.