We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/chakradharkalle03-arch/MCP2'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
@echo off
REM Start Both Backend and Frontend Servers
echo ========================================
echo Starting Both Servers
echo ========================================
echo.
echo Starting Backend Server...
start "Backend - Port 8001" cmd /k "cd /d %~dp0 && .\venv\Scripts\python.exe main.py"
timeout /t 5 /nobreak >nul
echo Starting Frontend Server...
start "Frontend - Port 3000" cmd /k "cd /d %~dp0\frontend && npm start"
echo.
echo ========================================
echo Both servers are starting!
echo ========================================
echo.
echo Backend: http://localhost:8001
echo Frontend: http://localhost:3000
echo.
echo Open http://localhost:3000 in your browser
echo.
pause