mirror of
https://github.com/gbrigandi/mcp-server-wazuh.git
synced 2025-07-13 07:04:49 -06:00

Major enhancements: - Added Docker image building and publishing to GitHub Container Registry with multi-platform support (linux/amd64, linux/arm64) - Expanded from basic alert retrieval to comprehensive security operations with 14 MCP tools covering: * Vulnerability management (agent vulnerability summaries, critical vulnerabilities) * Agent monitoring (running agents, processes, network ports) * System statistics (weekly stats, remoted stats, log collector stats) * Log analysis (manager logs, error logs with search capabilities) * Cluster management (health checks, node listing) - Updated environment configuration to support both Wazuh Manager API and Wazuh Indexer with proper SSL handling - Enhanced documentation with detailed use cases, Docker deployment options, and comprehensive tool descriptions - Upgraded wazuh-client dependency to v0.1.1 for expanded API capabilities - Added agent ID formatting and validation for consistent three-digit zero-padded identifiers This transforms the server from a simple alert fetcher into a full-featured security operations platform for AI-assisted Wazuh management.
39 lines
1.0 KiB
TOML
39 lines
1.0 KiB
TOML
[package]
|
|
name = "mcp-server-wazuh"
|
|
version = "0.1.2"
|
|
edition = "2021"
|
|
description = "Wazuh SIEM MCP Server"
|
|
authors = ["Gianluca Brigandi <gbrigand@gmail.com>"]
|
|
license = "MIT"
|
|
repository = "https://github.com/gbrigandi/mcp-server-wazuh"
|
|
readme = "README.md"
|
|
|
|
[dependencies]
|
|
wazuh-client = "0.1.1"
|
|
rmcp = { version = "0.1.5", features = ["server", "transport-io"] }
|
|
tokio = { version = "1", features = ["full"] }
|
|
reqwest = { version = "0.12", features = ["json", "rustls-tls"], default-features = false }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
anyhow = "1.0"
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt"] }
|
|
schemars = "0.8"
|
|
clap = { version = "4.5", features = ["derive"] }
|
|
dotenv = "0.15"
|
|
thiserror = "2.0"
|
|
chrono = "0.4.41"
|
|
|
|
[dev-dependencies]
|
|
mockito = "1.7"
|
|
anyhow = "1.0"
|
|
httpmock = "0.7"
|
|
uuid = { version = "1.16", features = ["v4"] }
|
|
once_cell = "1.21"
|
|
async-trait = "0.1"
|
|
regex = "1.11"
|
|
tokio-test = "0.4"
|
|
serde_json = "1.0"
|
|
tempfile = "3.0"
|
|
|