We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/balychevtsev-coder/MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
activate_env.bat•230 B
@echo off
setlocal
cd /d "%~dp0"
if not exist venv\Scripts\activate.bat (
echo venv not found. Run setup_env.bat first.
exit /b 1
)
call venv\Scripts\activate.bat
echo Virtual environment activated.
endlocal