# wallet_remove

Remove a local account only with force, backup confirmation and human approval. Fund absence cannot be proven across all derived addresses. Cannot remove the active account; never sweeps funds.

## Result

Account removal status or an error.

## Permissions

Requires force, backup confirmation and human approval. The active account cannot be removed.

## Definition 1 (full)

Registered in: Legacy local wallet; Legacy local identity; Local Vault · broadcasting disabled; Local Vault · all roles; Local Vault · payment role only; Local Vault + sponsor.

Remove a local account only with force, backup confirmation and human approval. Fund absence cannot be proven across all derived addresses. Cannot remove the active account; never sweeps funds.

| Field | Type | Required | Description | Constraints |
| --- | --- | --- | --- | --- |
| name | string | Yes |  | pattern: "^[a-z0-9][a-z0-9_-]{0,63}$" |
| force | boolean | No |  | default: false |
| backupConfirmed | boolean | No |  | default: false |

Nested requirements apply when their parent is supplied.

### Input schema

```json
{
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "pattern": "^[a-z0-9][a-z0-9_-]{0,63}$"
    },
    "force": {
      "default": false,
      "type": "boolean"
    },
    "backupConfirmed": {
      "default": false,
      "type": "boolean"
    }
  },
  "required": [
    "name"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema"
}
```

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