prometheus_mcp_server vs time
Side-by-side comparison to help you pick between these two MCP servers.
prometheus_mcp_server by CaesarYangs | time by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 34 | ★ 85,748 |
| 30d uses | — | — |
| Score | 35 | 77 |
| Official | — | ✓ |
| Categories | MonitoringDeveloper ToolsOps & Infra | ProductivityDeveloper ToolsCommunication |
| Language | Python | TypeScript |
| Last commit | 14 mo ago | this month |
prometheus_mcp_server · Summary
An MCP server for LLMs to query, analyze and interact with Prometheus databases.
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
prometheus_mcp_server · Use cases
- AI assistants analyzing system performance metrics from Prometheus
- Automated log analysis correlating metrics with system events
- DevOps workflows with AI-generated insights based on time-series data
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 · Install
Installing via Smithery
npx -y @smithery/cli install @CaesarYangs/prometheus_mcp_server --client claudeManual Installation
**Prepare python environment**
cd ./src/prometheus_mcp_server
python3 -m venv .venv
source .venv/bin/activate**Install requirements**
pip install -r requirements.txtWith Claude Desktop
Add to your Claude Desktop config:
{
"mcpServers": {
"prometheus": {
"command": "uv",
"args": [
"--directory",
"/path/to/prometheus_mcp_server",
"run",
"server.py"
],
"env": {
"PROMETHEUS_HOST": "http://localhost:9090"
}
}
}
}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"]
}
}
}