EGRESS_LIMIT_REACHED

What it means. This app has reached how much it may call outside services.

What to do. Wait and try again. If the app opens a new connection for every request, reusing connections will fix it; most HTTP clients do that with a keep-alive agent.

  • HTTP status: 429
  • Retryable after applying the fix: yes

Every failure from the CLI or an MCP tool has this shape:

{
  "ok": false,
  "code": "EGRESS_LIMIT_REACHED",
  "message": "This app has reached how much it may call outside services.",
  "fix": "Wait and try again. If the app opens a new connection for every request, reusing connections will fix it; most HTTP clients do that with a keep-alive agent.",
  "file": "<where to edit, when known>",
  "retryable": true,
  "docs": "https://docs.uarpie.app/errors/EGRESS_LIMIT_REACHED"
}

Apply fix (edit file when it is given), then run the same command again.