time vs prometheus-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | prometheus-mcp-server by pab1it0 | |
|---|---|---|
| Stars | ★ 85,748 | ★ 442 |
| 30d uses | — | — |
| Score | 77 | 52 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | MonitoringOps & InfraDeveloper 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.
prometheus-mcp-server · Summary
Prometheus MCP server enables AI agents to query and analyze metrics through standardized 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
prometheus-mcp-server · Use cases
- AI-powered monitoring and alerting systems that can investigate anomalies
- Automated infrastructure reporting by querying historical metrics trends
- Developer assistants that help troubleshoot performance issues by querying relevant metrics
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"]
}
}
}prometheus-mcp-server · Install
Installation
Claude Desktop
Add to your Claude Desktop configuration:
{
"mcpServers": {
"prometheus": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e",
"PROMETHEUS_URL",
"ghcr.io/pab1it0/prometheus-mcp-server:latest"
],
"env": {
"PROMETHEUS_URL": "<your-prometheus-url>"
}
}
}
}Docker
docker run -i --rm \
-e PROMETHEUS_URL="http://your-prometheus:9090" \
ghcr.io/pab1it0/prometheus-mcp-server:latest