Skip to main content
Glama
cisse-lalya

wazuh-mcp-soc

by cisse-lalya

๐Ÿ” Wazuh SIEM ร— Claude Desktop โ€” Conversational SOC via MCP

A complete walkthrough of my hands-on cybersecurity project integrating a SIEM with an AI assistant to enable natural-language security operations.


๐ŸŽฏ Project Overview

This project demonstrates how AI can augment SOC operations by connecting Wazuh SIEM to Claude Desktop through the MCP (Model Context Protocol), allowing a security analyst to query the SIEM in natural language and receive instant, structured analysis โ€” without manually navigating dashboards.

Slack enrichment is handled both automatically (Wazuh native integration, level 7+ alerts) and on-demand (via Claude Desktop conversation).

What I accomplished:

  • โœ… Deployed Wazuh Manager + Indexer on Ubuntu Server VM

  • โœ… Connected Windows and Kali Linux agents to the Wazuh Manager

  • โœ… Built a Python MCP server exposing 5 tools to Claude Desktop

  • โœ… Enabled natural-language querying of alerts, agents, and vulnerabilities

  • โœ… Configured automatic Slack notifications for critical alerts (level 7+)

  • โœ… Added on-demand AI-enriched Slack reporting from Claude Desktop


๐Ÿ—๏ธ Architecture

[Physical Machine โ€” Windows 10 โ€” Claude Desktop]
        โ”‚
        โ”‚ stdio (local subprocess)
        โ–ผ
  wazuh_mcp_server.py  โ†โ”€โ”€ Python MCP Server
        โ”‚
        โ”œโ”€โ”€ HTTPS :55000 โ†’ Wazuh Manager API
        โ”œโ”€โ”€ HTTPS :9200  โ†’ Wazuh Indexer (OpenSearch)
        โ””โ”€โ”€ HTTPS        โ†’ Slack Webhook
        โ”‚
        โ–ผ
[VM Ubuntu Server โ€” Wazuh Manager + Indexer]
        โ–ฒ
        โ”‚ Logs / Heartbeat (port 1514)
        โ”œโ”€โ”€ [VM Windows โ€” Wazuh Agent]
        โ””โ”€โ”€ [VM Kali    โ€” Wazuh Agent]

๐Ÿ› ๏ธ Technical Implementation

Environment Setup

Host OS       : Windows 10 (Claude Desktop + Python MCP Server)
VM 1          : Ubuntu Server โ€” Wazuh Manager 4.11.2 + Wazuh Indexer
VM 2          : Windows 10   โ€” Wazuh Agent
VM 3          : Kali Linux   โ€” Wazuh Agent / Attack simulation
Hypervisor    : VMware

MCP Server โ€” 5 Tools Built

Tool

Description

get_critical_alerts

Fetch alerts filtered by severity and time range

get_agents_status

List all agents with status, IP, OS, version

get_vulnerabilities

CVEs detected per agent, filtered by severity

generate_security_report

Aggregate alerts + agents + vulns into a full report

send_to_slack

Post AI-enriched analysis to the SOC Slack channel

Natural Language Queries (Examples)

"Show me critical alerts from the last 24 hours"
"Which agents have unpatched critical vulnerabilities?"
"Generate a security report with recommendations"
"Send the critical alerts to Slack with an analysis"

Slack Integration

Automatic โ€” via Wazuh native integration in ossec.conf :

<integration>
  <name>custom-slack</name>
  <hook_url>https://hooks.slack.com/services/XXX/YYY/ZZZ</hook_url>
  <level>7</level>
  <alert_format>json</alert_format>
</integration>

On-demand โ€” via send_to_slack MCP tool called by Claude Desktop, posting an AI-generated summary with alert details, severity color coding, and timestamp directly to the SOC channel.

Claude Desktop Configuration

{
  "mcpServers": {
    "wazuh": {
      "command": "python",
      "args": ["C:\\wazuh-mcp\\wazuh_mcp_server.py"]
    }
  }
}

Network Ports Required

sudo ufw allow 55000/tcp   # Wazuh Manager API
sudo ufw allow 9200/tcp    # Wazuh Indexer (OpenSearch)
sudo ufw allow 1514/tcp    # Agent communication

๐Ÿ“Š Results & Findings

What Worked Well

  • โœ… Full natural-language SIEM querying in seconds

  • โœ… Real-time alert detection (SSH sudo usage, PAM sessions, brute-force attempts)

  • โœ… AI-generated security reports with structured recommendations

  • โœ… Dual Slack enrichment โ€” automatic + on-demand from Claude Desktop

  • โœ… Multi-agent visibility (Ubuntu Manager, Windows agent, Kali agent)

Key Lessons

  • MCP bridges the gap between complex security tools and conversational AI

  • Separating authentication systems (Wazuh API vs Indexer) is critical to avoid errors

  • AI enrichment reduces the time an analyst spends interpreting raw log data

  • Natural-language interfaces lower the barrier to entry for SOC operations


๐Ÿ”’ Security Notes

  • API account used with read-only scope (principle of least privilege)

  • Secrets managed via .env file โ€” never committed to version control

  • WAZUH_VERIFY_SSL=true recommended in production with valid certificates

  • Indexer port 9200 should be restricted to trusted IPs only in production


๐Ÿ› ๏ธ Skills Demonstrated

Technical Skills

  • SIEM deployment and configuration (Wazuh)

  • Python async development (httpx, MCP SDK)

  • REST API integration (JWT authentication, OpenSearch queries)

  • Multi-VM network configuration (VMware, bridged networking)

  • AI tool integration (Claude Desktop, MCP protocol)

  • Slack API (Incoming Webhooks, Block Kit formatting)

Security Skills

  • Alert triage and severity classification

  • Vulnerability management workflow

  • SOC operations and incident analysis

  • Security report generation


โš™๏ธ Installation

Prerequisites

  • Python 3.10+

  • Wazuh Manager + Indexer (Ubuntu Server)

  • Claude Desktop

  • Slack Incoming Webhook URL

Setup

git clone https://github.com/cisse-lalya/wazuh-mcp-soc.git
cd wazuh-mcp-soc
pip install -r requirements.txt
copy .env.example .env
notepad .env   # Fill in your Wazuh + Slack credentials

.env Configuration

WAZUH_API_URL=https://<WAZUH_VM_IP>:55000
WAZUH_API_USER=wazuh
WAZUH_API_PASSWORD=your_password

WAZUH_INDEXER_URL=https://<WAZUH_VM_IP>:9200
WAZUH_INDEXER_USER=admin
WAZUH_INDEXER_PASSWORD=your_password

WAZUH_VERIFY_SSL=false
SLACK_WEBHOOK_URL=https://hooks.slack.com/services/XXX/YYY/ZZZ

Test Connection

python -c "from dotenv import load_dotenv; load_dotenv(); import asyncio; from wazuh_client import WazuhClient; c=WazuhClient(); print(asyncio.run(c.get_agents_status()))"

๐Ÿงฐ Tech Stack

Wazuh 4.11.2 ยท OpenSearch ยท Claude Desktop ยท MCP Protocol ยท Python 3.13 ยท httpx ยท Slack Webhooks ยท VMware ยท Ubuntu Server ยท Windows 10 ยท Kali Linux


๐Ÿ‘ค About Me

Cybersecurity student and Junior SOC Analyst, passionate about bridging network operations and security through automation and AI-driven tooling. This project reflects my approach to security: building practical, integrated solutions rather than studying tools in isolation.

Connect with me:

-
license - not tested
-
quality - not tested
C
maintenance

Maintenance

โ€“Maintainers
โ€“Response time
โ€“Release cycle
โ€“Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/cisse-lalya/Wazuh-SIEM-Claude-Desktop-Conversational-SOC-via-MCP'

If you have feedback or need assistance with the MCP directory API, please join our Discord server