We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/zkyko/MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
start_trading_system.batβ’1.65 KiB
@echo off
echo ==========================================
echo π STARTING TRADING ANALYSIS SYSTEM
echo ==========================================
echo.
REM Check if we're in the right directory
if not exist "web_api_server.py" (
echo β Error: Please run this from the MCP directory
pause
exit /b 1
)
echo π Current directory: %CD%
echo.
REM Activate virtual environment
echo π§ Activating virtual environment...
call .venv\Scripts\activate.bat
if errorlevel 1 (
echo β Failed to activate virtual environment
echo Make sure .venv exists and contains Scripts\activate.bat
pause
exit /b 1
)
echo β Virtual environment activated
echo.
REM Start the backend API server
echo π Starting Backend API Server (Port 8001)...
start "Trading API Server" cmd /k "python web_api_server.py"
REM Wait a moment for the API server to start
timeout /t 3 /nobreak > nul
REM Start the correct MCP server
echo π Starting MCP Server...
start "MCP Trading Server" cmd /k "python mcp_server.py"
REM Wait a moment for the MCP server to start
timeout /t 2 /nobreak > nul
REM Start the frontend
echo π¨ Starting Frontend (Port 5173)...
cd frontend
start "Trading Frontend" cmd /k "npm run dev"
cd ..
echo.
echo ==========================================
echo β ALL SERVICES STARTED SUCCESSFULLY!
echo ==========================================
echo.
echo π Frontend: http://localhost:5173
echo π API: http://localhost:8001
echo π API Docs: http://localhost:8001/docs
echo π MCP: Running in background
echo.
echo Press any key to close this window...
echo (The services will continue running in their own windows)
pause > nul