diff --git a/main.py b/main.py index 78dfe46..81d3e33 100644 --- a/main.py +++ b/main.py @@ -21,7 +21,7 @@ ASCII_TITLE = f""" {Fore.WHITE}(| | '. (_/| .-. | \ | | | |.-._) \ | | || |`-'| | . '.' | .--' | | {Style.RESET_ALL} {Fore.WHITE} | '--' | | | | | `' '-' '\ / | | (_' '--'\ | |\ \ | `---.| ,'. | {Style.RESET_ALL} {Fore.WHITE} `------' `--' `--' `-----' `-----' `--' `-----' `--' '--' `------''--' '--' {Style.RESET_ALL} -{Fore.RED}====================== GHOSTCREW ======================{Style.RESET_ALL} +{Fore.WHITE}====================== GHOSTCREW ======================{Style.RESET_ALL} """ # Import Agent-related modules diff --git a/start.bat b/start.bat index 40648dd..4d4de2d 100644 --- a/start.bat +++ b/start.bat @@ -12,6 +12,15 @@ if errorlevel 1 ( exit /b 1 ) +:: Check if Node.js is installed +node --version >nul 2>&1 +if errorlevel 1 ( + echo Node.js is not installed, please install Node.js first + echo Most MCP servers require Node.js to function properly + pause + exit /b 1 +) + :: Check and install dependencies from requirements.txt echo Installing dependencies from requirements.txt... pip install -r requirements.txt