# STORAGE_FULL

**What it means.** This app has used all the file space its plan includes, so no upload link was given for that file.

**What to do.** Delete files the app no longer needs and ask for the link again, or tell the person to move to a plan with more room — Personal includes 10 GB for each app, Family 50 GB and Community 200 GB. The app itself keeps running and nothing is deleted. Note that this refuses upload links only: a file the app writes for itself through UARPIE_STORAGE_BUCKET still goes through, and still counts.

- HTTP status: 409
- Retryable after applying the fix: yes

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

```json
{
  "ok": false,
  "code": "STORAGE_FULL",
  "message": "This app has used all the file space its plan includes, so no upload link was given for that file.",
  "fix": "Delete files the app no longer needs and ask for the link again, or tell the person to move to a plan with more room — Personal includes 10 GB for each app, Family 50 GB and Community 200 GB. The app itself keeps running and nothing is deleted. Note that this refuses upload links only: a file the app writes for itself through UARPIE_STORAGE_BUCKET still goes through, and still counts.",
  "file": "<where to edit, when known>",
  "retryable": true,
  "docs": "https://docs.uarpie.app/errors/STORAGE_FULL"
}
```

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