time vs ProxmoxMCP-Plus
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | ProxmoxMCP-Plus by RekklesNA | |
|---|---|---|
| Stars | ★ 85,748 | ★ 191 |
| 30d uses | — | — |
| Score | 77 | 50 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | Ops & InfraDeveloper ToolsAI / LLM Tools |
| Language | TypeScript | Python |
| Last commit | this month | this month |
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
ProxmoxMCP-Plus · Summary
MCP server enabling Proxmox VE VM and LXC control through MCP and OpenAPI interfaces.
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
ProxmoxMCP-Plus · Use cases
- Automating VM and container provisioning through LLM agents
- Managing Proxmox infrastructure using natural language commands
- Implementing backup and snapshot workflows via automation tools
- Executing container commands with policy controls through AI agents
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"]
}
}
}ProxmoxMCP-Plus · Install
Installation
Using PyPI
pip install proxmox-mcp-plus
proxmox-mcp-plusUsing Docker
docker run --rm -p 8811:8811 \
-e PROXMOX_API_KEY="$(openssl rand -hex 32)" \
-v "$(pwd)/proxmox-config/config.json:/app/proxmox-config/config.json:ro" \
ghcr.io/rekklesna/proxmoxmcp-plus:latestFor Claude Desktop
Add to Claude Desktop config:
{
"mcpServers": {
"proxmox-mcp-plus": {
"command": "python",
"args": ["/path/to/ProxmoxMCP-Plus/main.py"],
"env": {
"PROXMOX_MCP_CONFIG": "/path/to/ProxmoxMCP-Plus/proxmox-config/config.json"
}
}
}
}