We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Enreign/freshdeck-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
claude-flow.bat•353 B
@echo off
:: Claude Flow CLI for Windows
:: AI-Driven Development Toolkit
setlocal
:: Check if Node.js is installed
where node >nul 2>nul
if %errorlevel% neq 0 (
echo Error: Node.js is not installed or not in PATH
echo Please install Node.js from https://nodejs.org/
exit /b 1
)
:: Run Claude Flow CLI
node "%~dp0claude-flow" %*
endlocal