Skip to main content
Glama
cleanup_phase3.ps1641 B
param( [Parameter(ValueFromRemainingArguments=$true)] [string[]]$Args ) $scriptPath = Join-Path $PSScriptRoot "cleanup_phase3.py" # Find Python $python = (Get-Command python -ErrorAction SilentlyContinue) if (-not $python) { $python = (Get-Command py -ErrorAction SilentlyContinue) } if (-not $python) { Write-Error "Python not found. Please run: python scripts\cleanup_phase3.py <mode> [options]" exit 1 } # Echo what will be executed for clarity Write-Host "[cleanup] Running:" -ForegroundColor Cyan -NoNewline; Write-Host " $($python.Path) `"$scriptPath`" $Args" # Execute & $python.Path $scriptPath @Args exit $LASTEXITCODE

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/Zazzles2908/EX_AI-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server