zabbix-mcp-server vs sequentialthinking
并排对比,帮你在这两个 MCP server 之间做选择。
zabbix-mcp-server by initMAX | sequentialthinking by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 98 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 48 | 75 |
| 官方 | — | ✓ |
| 分类 | 可观测性开发者工具运维基建 | AI / LLM 工具开发者工具效率工具 |
| 实现语言 | Python | TypeScript |
| 最近提交 | 本月 | 本月 |
zabbix-mcp-server · 概述
全面的 Zabbix API 服务器,通过 MCP 协议提供 237 个监控和管理工具。
sequentialthinking · 概述
Sequential Thinking MCP 服务器通过逐步推理支持动态问题解决。
zabbix-mcp-server · 使用场景
- 通过 AI 助手实现 Zabbix 监控自动化
- 为 Zabbix 基础设施生成 PDF 报告
- 批量执行 Zabbix 主机和模板操作
sequentialthinking · 使用场景
- 规划复杂系统迁移并进行风险评估
- 需要逐步分析的调试生产环境问题
- 比较具有条件分支的架构选项
zabbix-mcp-server · 安装
安装
git clone https://github.com/initMAX/zabbix-mcp-server.git
cd zabbix-mcp-server
sudo ./deploy/install.sh
sudo nano /etc/zabbix-mcp/config.toml # 填写您的 Zabbix URL 和 API 令牌
sudo systemctl start zabbix-mcp-server
sudo systemctl enable zabbix-mcp-serverClaude Desktop 配置
在 claude_desktop_config.json 中添加:
{
"mcpServers": {
"zabbix": {
"command": "python",
"args": ["-m", "zabbix_mcp_server"],
"env": {
"ZABBIX_MCP_CONFIG": "/etc/zabbix-mcp/config.toml"
}
}
}
}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"
]
}
}
}