> ## Documentation Index
> Fetch the complete documentation index at: https://docs.agentcard.sh/llms.txt
> Use this file to discover all available pages before exploring further.

# buy_set_default_address

> Set the default delivery address on a linked merchant account.

Connect to `https://mcp.agentcard.sh/mcp` with the **user's connection token** (or a `buy_token` for org-owned accounts).

**Behavior:** idempotent.

<Note>Not in the default `tools/list`. It is still callable by exact name, and appears when the client sends the `x-expert-tools: 1` header.</Note>

## What it does

Set the default delivery address on a linked merchant account. address\_id is the id from buy\_addresses; new orders default to it.

## Inputs

| Field                     | Type   | Description                |
| ------------------------- | ------ | -------------------------- |
| `merchant` *(required)*   | string |                            |
| `address_id` *(required)* | string | the id from buy\_addresses |

## Returns

None.

## Example call

```json theme={null}
{
  "tool": "buy_set_default_address",
  "arguments": {
    "merchant": "\u2026",
    "address_id": "\u2026"
  }
}
```
