-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSTART-MCP-COMPLETE.bat
More file actions
38 lines (30 loc) · 979 Bytes
/
Copy pathSTART-MCP-COMPLETE.bat
File metadata and controls
38 lines (30 loc) · 979 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
@echo off
echo ============================================================
echo MCP SERVER - COMPLETE AUTO START
echo ============================================================
echo.
echo Starting both Backend and Interface servers...
echo.
cd /d "%~dp0"
echo Starting Backend Server...
start "MCP Backend Server" cmd /k "start-backend-fixed.bat"
timeout /t 5 /nobreak >nul
echo Starting Interface Server...
start "MCP Interface Server" cmd /k "start-interface-fixed.bat"
timeout /t 3 /nobreak >nul
echo.
echo ============================================================
echo SERVERS STARTING!
echo ============================================================
echo.
echo Backend: http://localhost:8000
echo Interface: http://localhost:3001/mcp-interface.html
echo.
echo Opening browser...
echo.
timeout /t 2 /nobreak >nul
start http://localhost:3001/mcp-interface.html
echo ✅ MCP Server is starting!
echo.
echo Press any key to close this window...
pause >nul