mcp-server-wazuh vs sequentialthinking
并排对比,帮你在这两个 MCP server 之间做选择。
mcp-server-wazuh by gbrigandi | sequentialthinking by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 206 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 49 | 75 |
| 官方 | — | ✓ |
| 分类 | 安全开发者工具可观测性 | AI / LLM 工具开发者工具效率工具 |
| 实现语言 | Rust | TypeScript |
| 最近提交 | 5 个月前 | 本月 |
mcp-server-wazuh · 概述
基于 Rust 的 Wazuh SIEM 的 MCP 服务器,可通过自然语言查询安全警报、漏洞和系统指标。
sequentialthinking · 概述
Sequential Thinking MCP 服务器通过逐步推理支持动态问题解决。
mcp-server-wazuh · 使用场景
- 通过自然语言查询进行安全警报分类和调查
- 跨代理基础设施的漏洞管理和补丁优先级排序
- 结合警报、进程和端口数据进行系统取证和事件响应
sequentialthinking · 使用场景
- 规划复杂系统迁移并进行风险评估
- 需要逐步分析的调试生产环境问题
- 比较具有条件分支的架构选项
mcp-server-wazuh · 安装
安装
**选项 1:下载预构建二进制文件(推荐)**
- 从 [发布页面](https://github.com/gbrigandi/mcp-server-wazuh/releases) 下载适用于您的操作系统的二进制文件
- 使其可执行(
chmod +x mcp-server-wazuh-linux-amd64) - 添加到 PATH 以方便访问
**选项 2:Docker**
docker pull ghcr.io/gbrigandi/mcp-server-wazuh:latest**选项 3:从源代码构建**
git clone https://github.com/gbrigandi/mcp-server-wazuh.git
cd mcp-server-wazuh
cargo build --release配置
使用 claude_desktop_config.json 配置 Claude Desktop:
{
"mcpServers": {
"wazuh": {
"command": "/path/to/mcp-server-wazuh",
"args": [],
"env": {
"WAZUH_API_HOST": "your_wazuh_manager_api_host",
"WAZUH_API_PORT": "55000",
"WAZUH_API_USERNAME": "your_wazuh_api_user",
"WAZUH_API_PASSWORD": "your_wazuh_api_password",
"WAZUH_INDEXER_HOST": "your_wazuh_indexer_host",
"WAZUH_INDEXER_PORT": "9200",
"WAZUH_INDEXER_USERNAME": "your_wazuh_indexer_user",
"WAZUH_INDEXER_PASSWORD": "your_wazuh_indexer_password",
"WAZUH_VERIFY_SSL": "false",
"WAZUH_TEST_PROTOCOL": "https",
"RUST_LOG": "info"
}
}
}
}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"
]
}
}
}