prometheus-mcp vs time
并排对比,帮你在这两个 MCP server 之间做选择。
prometheus-mcp by idanfishman | time by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 25 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 43 | 77 |
| 官方 | — | ✓ |
| 分类 | 可观测性开发者工具运维基建 | 效率工具开发者工具沟通协作 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 3 个月前 | 本月 |
prometheus-mcp · 概述
允许AI代理通过自然语言查询Prometheus监控指标的MCP服务器。
time · 概述
功能全面的 MCP 服务器,提供时间和时区转换功能,可自动检测系统时区。
prometheus-mcp · 使用场景
- AI助手监控系统性能并告警异常情况
- DevOps团队通过自然语言查询分析指标趋势
- 自动化报告系统基于Prometheus指标生成状态更新
time · 使用场景
- 协助安排跨时区的国际会议
- 为基于位置的查询提供实时时间信息
- 为旅行计划和行程安排提供时间转换
prometheus-mcp · 安装
安装
Claude Desktop
- 从[发布页面](https://github.com/idanfishman/prometheus-mcp/releases)下载最新的
.dxt文件 - 双击文件自动安装
- 在扩展设置中配置Prometheus URL
或者通过开发者设置:
{
"mcpServers": {
"prometheus": {
"command": "npx",
"args": ["prometheus-mcp@latest", "stdio"],
"env": {
"PROMETHEUS_URL": "http://localhost:9090"
}
}
}
}VS Code/Cursor/Windsurf
将此配置添加到您的客户端设置中:
{
"mcpServers": {
"prometheus": {
"command": "npx",
"args": ["prometheus-mcp@latest", "stdio"],
"env": {
"PROMETHEUS_URL": "http://localhost:9090"
}
}
}
}time · 安装
安装选项
**使用 uv(推荐):**
uvx mcp-server-time**使用 PIP:**
pip install mcp-server-time
python -m mcp_server_time**为 Claude Desktop 配置:**
{
"mcpServers": {
"time": {
"command": "uvx",
"args": ["mcp-server-time"]
}
}
}