MCP Catalogs
Home

mcp-server-wazuh vs sequentialthinking

Side-by-side comparison to help you pick between these two MCP servers.

mcp-server-wazuh
by gbrigandi
sequentialthinking
by modelcontextprotocol
Stars★ 206★ 85,748
30d uses
Score4975
Official
Categories
SecurityDeveloper ToolsMonitoring
AI / LLM ToolsDeveloper ToolsProductivity
LanguageRustTypeScript
Last commit5 mo agothis month

mcp-server-wazuh · Summary

Rust-based MCP server for Wazuh SIEM enabling natural language queries to security alerts, vulnerabilities, and system metrics.

sequentialthinking · Summary

Sequential Thinking MCP Server enables dynamic problem-solving through step-by-step reasoning.

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

sequentialthinking · Use cases

  • Planning complex system migrations with risk assessment
  • Debugging production issues requiring step-by-step analysis
  • Comparing architecture options with conditional branching

mcp-server-wazuh · Install

Installation

**Option 1: Download Pre-built Binary (Recommended)**

  1. Download the binary for your OS from the [Releases page](https://github.com/gbrigandi/mcp-server-wazuh/releases)
  2. Make it executable (chmod +x mcp-server-wazuh-linux-amd64)
  3. 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 --release

Configuration

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"
      }
    }
  }
}

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