-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstart-mcp-server.bat
More file actions
24 lines (21 loc) · 867 Bytes
/
Copy pathstart-mcp-server.bat
File metadata and controls
24 lines (21 loc) · 867 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
@echo off
echo ========================================
echo MCP SERVER STARTUP
echo ========================================
echo.
echo Starting Backend Server...
start "MCP Backend" cmd /k "cd /d C:\Users\Jatin\Documents\APP\MCP_Server\NEW MCP\backend && set PYTHONPATH=%CD% && python -m uvicorn app.main:app --reload --host 0.0.0.0 --port 8000"
echo Starting Interface Server...
start "MCP Interface" cmd /k "cd /d C:\Users\Jatin\Documents\APP\MCP_Server\NEW MCP\interface && python -m http.server 3001"
echo.
echo ========================================
echo SERVERS STARTING...
echo ========================================
echo.
echo Backend Server: http://localhost:8000
echo Interface: http://localhost:3001
echo Main Interface: http://localhost:3001/mcp-interface.html
echo.
echo Wait for both servers to start, then open your browser!
echo.
pause