prometheus_mcp_server vs sequentialthinking
并排对比,帮你在这两个 MCP server 之间做选择。
prometheus_mcp_server by CaesarYangs | sequentialthinking by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 34 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 35 | 75 |
| 官方 | — | ✓ |
| 分类 | 可观测性开发者工具运维基建 | AI / LLM 工具开发者工具效率工具 |
| 实现语言 | Python | TypeScript |
| 最近提交 | 14 个月前 | 本月 |
prometheus_mcp_server · 概述
一个让LLM查询、分析并交互Prometheus数据库的MCP服务器。
sequentialthinking · 概述
Sequential Thinking MCP 服务器通过逐步推理支持动态问题解决。
prometheus_mcp_server · 使用场景
- AI助手分析来自Prometheus的系统性能指标
- 自动化日志分析将指标与系统事件相关联
- 基于时间序列数据的AI生成见解的DevOps工作流
sequentialthinking · 使用场景
- 规划复杂系统迁移并进行风险评估
- 需要逐步分析的调试生产环境问题
- 比较具有条件分支的架构选项
prometheus_mcp_server · 安装
通过Smithery安装
npx -y @smithery/cli install @CaesarYangs/prometheus_mcp_server --client claude手动安装
**准备Python环境**
cd ./src/prometheus_mcp_server
python3 -m venv .venv
source .venv/bin/activate**安装依赖**
pip install -r requirements.txt在Claude Desktop中使用
添加到Claude Desktop配置文件:
{
"mcpServers": {
"prometheus": {
"command": "uv",
"args": [
"--directory",
"/path/to/prometheus_mcp_server",
"run",
"server.py"
],
"env": {
"PROMETHEUS_HOST": "http://localhost:9090"
}
}
}
}sequentialthinking · 安装
安装
**Claude Desktop**: 添加到您的 claude_desktop_config.json 文件中:
{
"mcpServers": {
"sequential-thinking": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-sequential-thinking"
]
}
}
}**VS Code**: 使用安装按钮或手动配置:
{
"servers": {
"sequential-thinking": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-sequential-thinking"
]
}
}
}**Docker**:
{
"mcpServers": {
"sequentialthinking": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"mcp/sequentialthinking"
]
}
}
}