mcp-server-wazuh vs everything
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-wazuh by gbrigandi | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 206 | ★ 85,748 |
| 30d uses | — | — |
| Score | 49 | 77 |
| Official | — | ✓ |
| Categories | SecurityDeveloper ToolsMonitoring | Developer ToolsAI / LLM ToolsOther |
| Language | Rust | TypeScript |
| Last commit | 5 mo ago | this month |
mcp-server-wazuh · Summary
Rust-based MCP server for Wazuh SIEM enabling natural language queries to security alerts, vulnerabilities, and system metrics.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mcp-server-wazuh · Use cases
- Security alert triage and investigation with natural language queries
- Vulnerability management and patch prioritization across agent infrastructure
- System forensics and incident response combining alerts with process/ports data
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
mcp-server-wazuh · Install
Installation
**Option 1: Download Pre-built Binary (Recommended)**
- Download the binary for your OS from the [Releases page](https://github.com/gbrigandi/mcp-server-wazuh/releases)
- Make it executable (
chmod +x mcp-server-wazuh-linux-amd64) - Add to your PATH for easier access
**Option 2: Docker**
docker pull ghcr.io/gbrigandi/mcp-server-wazuh:latest**Option 3: Build from Source**
git clone https://github.com/gbrigandi/mcp-server-wazuh.git
cd mcp-server-wazuh
cargo build --releaseConfiguration
Configure Claude Desktop with claude_desktop_config.json:
{
"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"
}
}
}
}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