time vs Convert-Markdown-PDF-MCP
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | Convert-Markdown-PDF-MCP by seanivore | |
|---|---|---|
| Stars | ★ 85,748 | ★ 15 |
| 30d uses | — | — |
| Score | 77 | 38 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | File SystemProductivityDeveloper Tools |
| Language | TypeScript | Python |
| Last commit | this month | 6 mo ago |
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
Convert-Markdown-PDF-MCP · Summary
MCP server that converts Markdown to PDF with VS Code styling using Python's ReportLab.
time · Use cases
- Assisting with international meeting scheduling across time zones
- Providing real-time time information for location-based queries
- Enabling time conversion for travel planning and itineraries
Convert-Markdown-PDF-MCP · Use cases
- Generate PDF documents from Markdown content
- Store and process notes programmatically
- Create formatted reports from markdown files
time · Install
Installation Options
**Using uv (recommended):**
uvx mcp-server-time**Using PIP:**
pip install mcp-server-time
python -m mcp_server_time**Configure for Claude Desktop:**
{
"mcpServers": {
"time": {
"command": "uvx",
"args": ["mcp-server-time"]
}
}
}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"
]
}
}
}