We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/sandraschi/clawd-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
install.bat•423 B
@echo off
REM openclaw-mcp install - pip install from source, npm install in webapp
REM Run from repo root. One-time after clone.
cd /d "%~dp0\.."
echo Installing Python deps (pip install -e .[dev])...
pip install -e ".[dev]"
if errorlevel 1 exit /b 1
echo Installing webapp deps (npm install in webapp/)...
cd webapp
npm install
cd ..
if errorlevel 1 exit /b 1
echo Done. Run scripts\start.bat to start API and webapp.