wazuh-mcp-soc
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@wazuh-mcp-socShow me critical alerts from the last 24 hours"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
๐ 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 : VMwareMCP Server โ 5 Tools Built
Tool | Description |
| Fetch alerts filtered by severity and time range |
| List all agents with status, IP, OS, version |
| CVEs detected per agent, filtered by severity |
| Aggregate alerts + agents + vulns into a full report |
| 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
.envfile โ never committed to version controlWAZUH_VERIFY_SSL=truerecommended in production with valid certificatesIndexer 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/ZZZTest 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:
GitHub: @cisse-lalya
LinkedIn: linkedin.com/in/ndeyelalyacisse
This server cannot be installed
Maintenance
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
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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