MCP Catalogs
Home

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
Score5177
Official
Categories
SecurityMonitoringDeveloper Tools
Developer ToolsAI / LLM ToolsOther
LanguagePythonTypeScript
Last commit2 mo agothis 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

  1. **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
  1. **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
Comparison generated from public README + GitHub signals. Last updated automatically.