MCP Catalogs
Home

mcp-server-wazuh vs filesystem

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

mcp-server-wazuh
by gbrigandi
filesystem
by modelcontextprotocol
Stars★ 206★ 85,748
30d uses
Score4977
Official
Categories
SecurityDeveloper ToolsMonitoring
File SystemDeveloper 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.

filesystem · Summary

A feature-rich MCP server for filesystem operations with dynamic directory access control.

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

filesystem · Use cases

  • Enable AI models to read and write project files during development
  • Allow Claude or other MCP clients to browse and analyze codebases
  • Provide secure sandboxed access to specific directories for content generation

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

filesystem · Install

Installation

Using NPX

{
  "mcpServers": {
    "filesystem": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-filesystem",
        "/path/to/allowed/directory"
      ]
    }
  }
}

Using Docker

{
  "mcpServers": {
    "filesystem": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
        "mcp/filesystem",
        "/projects"
      ]
    }
  }
}

VS Code Extension

Click the installation buttons in the README to install directly in VS Code.

Comparison generated from public README + GitHub signals. Last updated automatically.