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

pdfcrowd-mcp-pdf-export

v1.0.1

Published

PDF Export for AI agents - export any content to PDF with AI-powered formatting. Works with Claude Code, Codex CLI, and other MCP clients.

Readme

PDF Export for AI Agents

MCP server for PDF export. Install locally, use from Claude Code, Codex, Gemini CLI, or any MCP-compatible client.

Reports, documentation, code reviews — anything your AI can describe, it can now export.

Powered by PDFCrowd.

What You Can Do

The pattern:

[Analyze/Read something] → [Create PDF with specific structure] → [Save to path]

Document your API from code:

Read the route handlers in src/api/, generate API documentation
with endpoints, parameters, and examples. Save to docs/api.pdf

Document your database schema:

Explore the codebase and create a PDF documenting
all DB tables, relationships, column types, and indexes. Save to docs/schema.pdf

Automate reports (non-interactive):

claude -p "Analyze git commits from last week, create a sprint
  summary PDF at reports/sprint.pdf" && \
  mail -s "Sprint Report" [email protected] -A reports/sprint.pdf

More example prompts →

Configuration

Claude Code / Gemini CLI

Add to your config file:

  • Claude Code: ~/.mcp.json
  • Gemini CLI: ~/.gemini/settings.json
{
  "mcpServers": {
    "pdfcrowd-export-pdf": {
      "command": "npx",
      "args": ["-y", "pdfcrowd-mcp-pdf-export"],
      "env": {
        "PDFCROWD_USERNAME": "demo",
        "PDFCROWD_API_KEY": "demo"
      },
      "timeout": 65000
    }
  }
}

Codex CLI

Add to ~/.codex/config.toml:

[mcp_servers.pdfcrowd-export-pdf]
command = "npx"
args = ["-y", "pdfcrowd-mcp-pdf-export"]
tool_timeout_sec = 65

[mcp_servers.pdfcrowd-export-pdf.env]
PDFCROWD_USERNAME = "demo"
PDFCROWD_API_KEY = "demo"

Notes

  • Restart your CLI after configuration to load the server
  • Timeout is set to 65 seconds because complex PDFs may take up to 60 seconds to generate

Credentials

  • Default: produces watermarked PDFs (no signup needed)
  • Remove watermarks: get credentials at pdfcrowd.com/pricing

Privacy Notice

PDFs are generated remotely on PDFCrowd servers. When you use this tool:

  • Data transmitted: Your content (HTML, URL, or file) is sent to PDFCrowd servers via HTTPS
  • Data retention: Content is retained only during processing, then permanently deleted (typically within 30 minutes)
  • No copies: No copies of your content are kept or shared
  • Location: PDFCrowd is based in the Czech Republic (EU), GDPR applies
  • Privacy policy: pdfcrowd.com/privacy

For sensitive or confidential content, review PDFCrowd's privacy policy before use.

Development

See DEVELOPMENT.md for building from source, testing, and contributing.

License

MIT