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 | — | — |
| Score | 77 | 38 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | File SystemProductivityDeveloper Tools |
| Language | TypeScript | Python |
| Last commit | this month | 6 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-everythingConvert-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"
]
}
}
}