* Ported code to RMCP

* Implemented unit and e2e testing
* Other fixes and enhancements
This commit is contained in:
Gianluca Brigandi
2025-05-22 20:02:41 -07:00
parent 6661523c0f
commit d59d67b8db
28 changed files with 1519 additions and 2778 deletions

15
docker/docker-compose.yml Normal file
View File

@@ -0,0 +1,15 @@
version: '3.8'
services:
mcp-server:
build: .
ports:
- "8000:8000"
environment:
- WAZUH_HOST=${WAZUH_HOST:-localhost}
- WAZUH_PORT=${WAZUH_PORT:-55000}
- WAZUH_USER=${WAZUH_USER:-admin}
- WAZUH_PASS=${WAZUH_PASS:-admin}
- VERIFY_SSL=${VERIFY_SSL:-false}
- MCP_SERVER_PORT=${MCP_SERVER_PORT:-8000}
restart: unless-stopped