`get_wallet` reports whether your workspace can afford a new run and how much is reserved. It is read-only.

## Signature

```text
get_wallet({})
```

```json
{
  "name": "get_wallet",
  "arguments": {}
}
```

The input object has no fields. Adding funds and changing either spend limit are human actions on the web wallet.

## Return shape

The Remote MCP response includes the amounts and limits below, plus `currency`, `locked` and a short `note`. It excludes ledger history, display blocks, `daily_time_zone` and purchase links. The direct HTTP wallet response also includes workspace details, recent ledger entries and `daily_time_zone`. HTTP run errors may include a human-only `topup_url` when funds are insufficient.

```json
{
  "balance": "<USD decimal string>",
  "held": "<USD decimal string>",
  "available": "<balance minus held>",
  "confirm_threshold": "<USD decimal string or null>",
  "daily_spend_limit": "<USD decimal string or null>",
  "daily_spent": "<captured today plus unresolved holds>",
  "daily_remaining": "<USD decimal string or null>",
  "daily_resets_at": "<next workspace-local midnight as an ISO timestamp>"
}
```

Use `available` for affordability. Do not subtract a second time or assume that settled balance is free to spend while another run is in flight.

## Limits and permissions

Only signed-in workspace owners and admins can add funds or change limits in the web wallet. MCP and API-key agents can read these controls but cannot change them.

- `confirm_threshold`: a tool run estimated above this amount needs approval.
- `daily_spend_limit`: the cap across all agents, including successful charges and funds still reserved.
- `null` on either limit means **No limit**; balance and platform safety checks still apply.
- `daily_remaining`: remaining daily allowance, or `null` when no daily cap is set.

Money fields are USD decimal strings. Use the raw values for calculations and `daily_resets_at` for the next reset.

For funding, charges and approvals, read [wallet and spending](https://scrollport.com/docs/guides/wallet). To begin an execution, continue to [search_tools](https://scrollport.com/docs/control-tools/search_tools).