everything vs prometheus-mcp-server
并排对比,帮你在这两个 MCP server 之间做选择。
everything by modelcontextprotocol | prometheus-mcp-server by pab1it0 | |
|---|---|---|
| Stars | ★ 85,748 | ★ 442 |
| 30天用量 | — | — |
| 综合分 | 77 | 52 |
| 官方 | ✓ | — |
| 分类 | 开发者工具AI / LLM 工具其它 | 可观测性运维基建开发者工具 |
| 实现语言 | TypeScript | Python |
| 最近提交 | 本月 | 本月 |
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
prometheus-mcp-server · 概述
Prometheus MCP 服务器让 AI 代理通过标准化接口查询和分析指标。
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
prometheus-mcp-server · 使用场景
- AI 驱动的监控系统,可以调查异常情况
- 通过查询历史指标趋势自动生成基础设施报告
- 开发者助手帮助通过查询相关指标解决性能问题
everything · 安装
NPX(推荐)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}Windows 用户请使用 cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}全局安装
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everythingprometheus-mcp-server · 安装
安装
Claude Desktop
添加到您的 Claude Desktop 配置中:
{
"mcpServers": {
"prometheus": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e",
"PROMETHEUS_URL",
"ghcr.io/pab1it0/prometheus-mcp-server:latest"
],
"env": {
"PROMETHEUS_URL": "<您的-prometheus-URL>"
}
}
}
}Docker
docker run -i --rm \
-e PROMETHEUS_URL="http://您的-prometheus:9090" \
ghcr.io/pab1it0/prometheus-mcp-server:latest