Wazuh-MCP-Server vs sequentialthinking
Side-by-side comparison to help you pick between these two MCP servers.
Wazuh-MCP-Server by gensecaihq | sequentialthinking by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 174 | ★ 85,748 |
| 30d uses | — | — |
| Score | 51 | 75 |
| Official | — | ✓ |
| Categories | SecurityMonitoringDeveloper Tools | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | Python | TypeScript |
| Last commit | 2 mo ago | this month |
Wazuh-MCP-Server · Summary
MCP server enabling conversational queries to Wazuh SIEM for threat detection, incident response, and compliance checks.
sequentialthinking · Summary
Sequential Thinking MCP Server enables dynamic problem-solving through step-by-step reasoning.
Wazuh-MCP-Server · Use cases
- SOC analysts querying alerts and triggering response actions in natural language
- Security teams conducting compliance checks and vulnerability assessments
- Incident responders triaging threats and investigating security events
sequentialthinking · Use cases
- Planning complex system migrations with risk assessment
- Debugging production issues requiring step-by-step analysis
- Comparing architecture options with conditional branching
Wazuh-MCP-Server · Install
Quick Start
- **Docker Deployment (Recommended)**:
git clone https://github.com/gensecaihq/Wazuh-MCP-Server.git
cd Wazuh-MCP-Server
cp .env.example .env
# Edit .env with your Wazuh credentials
docker compose up -d- **Connect to Claude Desktop**:
Go to Settings → Connectors → Add custom connector URL: https://your-server/mcp Add Bearer token in Advanced settings
sequentialthinking · Install
Installation
**Claude Desktop**: Add this to your claude_desktop_config.json:
{
"mcpServers": {
"sequential-thinking": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-sequential-thinking"
]
}
}
}**VS Code**: Use one of the installation buttons or manually configure with:
{
"servers": {
"sequential-thinking": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-sequential-thinking"
]
}
}
}**Docker**:
{
"mcpServers": {
"sequentialthinking": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"mcp/sequentialthinking"
]
}
}
}