We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/gensecaihq/Wazuh-MCP-Server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
deploy.bat•735 B
@echo off
REM Wazuh MCP Server - Windows Deployment Script
REM Calls the Python deployment script for OS-agnostic deployment
SETLOCAL EnableDelayedExpansion
REM Check if Python is available
python --version >nul 2>&1
if %ERRORLEVEL% NEQ 0 (
echo Error: Python is not installed or not in PATH
echo Please install Python 3.9+ from https://www.python.org/downloads/
exit /b 1
)
REM Check if Docker is available
docker --version >nul 2>&1
if %ERRORLEVEL% NEQ 0 (
echo Error: Docker is not installed or not in PATH
echo Please install Docker Desktop from https://www.docker.com/products/docker-desktop
exit /b 1
)
REM Run the Python deployment script with all arguments
python deploy.py %*
exit /b %ERRORLEVEL%