# app_sweep_scan

App-only: scans a Bitcoin address for categorized UTXOs — funding, ordinals, and BSV-21 tokens.

## Result

Indexed outputs available for a prospective sweep; no transaction is submitted.

## Permissions

Requires the configured wallet or identity context. Wallet read permissions apply; this handler does not request a payment.

## Definition 1 (full)

Registered in: Before wallet setup; Legacy local wallet; Legacy local identity; Local Vault · broadcasting disabled; Local Vault · all roles; Local Vault · payment role only; Project · payments scope; External BRC-100 wallet; Local Vault + sponsor; Droplit wallet.

App-only: scans a Bitcoin address for categorized UTXOs — funding, ordinals, and BSV-21 tokens.

| Field | Type | Required | Description | Constraints |
| --- | --- | --- | --- | --- |
| address | string | Yes | Bitcoin address to scan |  |

Nested requirements apply when their parent is supplied.

### Input schema

```json
{
  "type": "object",
  "properties": {
    "address": {
      "type": "string",
      "description": "Bitcoin address to scan"
    }
  },
  "required": [
    "address"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema"
}
```

[All tools](https://bsvmcp.com/docs/tools)