wallet_sendAllBsv
Send all BSV in the wallet to a single recipient
Read as MarkdownResult
An MCP result containing the operation outcome as text, with structured content where supplied. Check isError before using it; an output schema is shown when registered.
Permissions
This operation can change wallet, account or service state. A connected wallet applies its own permissions. Guarded broadcasts also require broadcasting to be enabled; service authorization is separate from wallet approval.
Inputs and availability
Full catalog · Legacy local wallet; Legacy local identity; Local Vault · broadcasting disabled; Local Vault · all roles; Local Vault · payment role only; External BRC-100 wallet; Local Vault + sponsor
| Field | Type / required | Description |
|---|---|---|
| destination | string Required | Destination P2PKH address to send all funds to |
Nested fields are required only when their parent object or array item is supplied.
Full input schema
{
"type": "object",
"properties": {
"destination": {
"type": "string",
"description": "Destination P2PKH address to send all funds to"
}
},
"required": [
"destination"
],
"$schema": "https://json-schema.org/draft/2020-12/schema"
}