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.ps1•600 B
#!/usr/bin/env pwsh
# Claude Flow CLI for PowerShell
# AI-Driven Development Toolkit
param(
[Parameter(ValueFromRemainingArguments=$true)]
[string[]]$Arguments
)
# Check if Node.js is installed
if (-not (Get-Command node -ErrorAction SilentlyContinue)) {
Write-Error "Node.js is not installed or not in PATH"
Write-Error "Please install Node.js from https://nodejs.org/"
exit 1
}
# Get the script directory
$scriptDir = Split-Path -Parent $MyInvocation.MyCommand.Path
# Run Claude Flow CLI
& node "$scriptDir\claude-flow" @Arguments
# Forward the exit code
exit $LASTEXITCODE