Wazuh-MCP-Server vs everything
Side-by-side comparison to help you pick between these two MCP servers.
Wazuh-MCP-Server by gensecaihq | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 174 | ★ 85,748 |
| 30d uses | — | — |
| Score | 51 | 77 |
| Official | — | ✓ |
| Categories | SecurityMonitoringDeveloper Tools | Developer ToolsAI / LLM ToolsOther |
| 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.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
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
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
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
everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything