MCP Catalogs
Home

everything vs Convert-Markdown-PDF-MCP

Side-by-side comparison to help you pick between these two MCP servers.

everything
by modelcontextprotocol
Convert-Markdown-PDF-MCP
by seanivore
Stars★ 85,748★ 15
30d uses
Score7738
Official
Categories
Developer ToolsAI / LLM ToolsOther
File SystemProductivityDeveloper Tools
LanguageTypeScriptPython
Last committhis month6 mo ago

everything · Summary

Official MCP test server exercising all protocol features for client builders.

Convert-Markdown-PDF-MCP · Summary

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

everything · Use cases

  • Testing MCP client implementations against all protocol features
  • Learning MCP protocol capabilities through a reference server
  • Validating client compatibility with different transport methods

Convert-Markdown-PDF-MCP · Use cases

  • Generate PDF documents from Markdown content
  • Store and process notes programmatically
  • Create formatted reports from markdown files

everything · Install

NPX (recommended)

{
  "mcpServers": {
    "everything": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

On Windows, use cmd /c:

{
  "mcpServers": {
    "everything": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Docker

{
  "mcpServers": {
    "everything": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "mcp/everything"]
    }
  }
}

Global install

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything

Convert-Markdown-PDF-MCP · Install

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"
      ]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.