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

# XactNet Addresses

> List, save, update profile codes, and delete saved XactNet or Xactimate recipient addresses through the CapOut MCP.

CapOut MCP exposes recipient-address tools:

* `capout_xactnet_addresses`
* `capout_create_xactnet_address`
* `capout_update_xactnet_address_profile`
* `capout_delete_xactnet_address`

## List saved addresses

```json theme={null}
{
  "tool": "capout_xactnet_addresses",
  "arguments": {}
}
```

Example response:

```json theme={null}
{
  "organization_id": "org_123",
  "count": 1,
  "message": "Saved XactNet addresses retrieved from CapOut.",
  "ok": true,
  "addresses": [
    {
      "id": "addr_123",
      "organization_id": "org_123",
      "address": "matt@capout.prod",
      "profile_code": "5L",
      "created_at": "2026-04-01T00:00:00Z",
      "updated_at": "2026-04-02T00:00:00Z"
    }
  ]
}
```

## Save a new address

```json theme={null}
{
  "tool": "capout_create_xactnet_address",
  "arguments": {
    "address": "claims-team@capout.prod",
    "profile_code": "8D"
  }
}
```

Example response:

```json theme={null}
{
  "organization_id": "org_123",
  "message": "Saved XactNet address is available for future CapOut deliveries.",
  "ok": true,
  "address": {
    "id": "addr_123",
    "organization_id": "org_123",
    "address": "claims-team@capout.prod",
    "profile_code": "8D",
    "created_at": "2026-04-01T00:00:00Z",
    "updated_at": "2026-04-02T00:00:00Z"
  }
}
```

## Assign a profile code

If a saved address has no `profile_code`, ask whether it should use Carrier or
Contractor, then update the saved address before processing a PDF:

* Carrier: `5L`
* Contractor: `8D`

```json theme={null}
{
  "tool": "capout_update_xactnet_address_profile",
  "arguments": {
    "address_id": "addr_123",
    "profile_code": "5L"
  }
}
```

Example response:

```json theme={null}
{
  "organization_id": "org_123",
  "message": "Saved XactNet address profile_code updated.",
  "ok": true,
  "address": {
    "id": "addr_123",
    "organization_id": "org_123",
    "address": "claims-team@capout.prod",
    "profile_code": "5L",
    "created_at": "2026-04-01T00:00:00Z",
    "updated_at": "2026-04-02T00:00:00Z"
  }
}
```

## Delete an address

```json theme={null}
{
  "tool": "capout_delete_xactnet_address",
  "arguments": {
    "address_id": "addr_123"
  }
}
```

Example response:

```json theme={null}
{
  "organization_id": "org_123",
  "message": "Saved XactNet address deleted.",
  "ok": true,
  "address": {
    "id": "addr_123",
    "organization_id": "org_123",
    "address": "claims-team@capout.prod",
    "profile_code": "5L",
    "created_at": "2026-04-01T00:00:00Z",
    "updated_at": "2026-04-02T00:00:00Z"
  }
}
```
