MCP Catalogs
Home

Wazuh-MCP-Server vs filesystem

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

Wazuh-MCP-Server
by gensecaihq
filesystem
by modelcontextprotocol
Stars★ 174★ 85,748
30d uses
Score5177
Official
Categories
SecurityMonitoringDeveloper Tools
File SystemDeveloper ToolsProductivity
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.

filesystem · Summary

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

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

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

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

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.