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.
CapOut MCP exposes three recipient-address tools:
capout_xactnet_addresses
capout_create_xactnet_address
capout_delete_xactnet_address
List saved addresses
{
"tool": "capout_xactnet_addresses",
"arguments": {}
}
Example response:
{
"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",
"created_at": "2026-04-01T00:00:00Z",
"updated_at": "2026-04-02T00:00:00Z"
}
]
}
Save a new address
{
"tool": "capout_create_xactnet_address",
"arguments": {
"address": "claims-team@capout.prod"
}
}
Example response:
{
"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",
"created_at": "2026-04-01T00:00:00Z",
"updated_at": "2026-04-02T00:00:00Z"
}
}
Delete an address
{
"tool": "capout_delete_xactnet_address",
"arguments": {
"address_id": "addr_123"
}
}
Example response:
{
"organization_id": "org_123",
"message": "Saved XactNet address deleted.",
"ok": true,
"address": {
"id": "addr_123",
"organization_id": "org_123",
"address": "claims-team@capout.prod",
"created_at": "2026-04-01T00:00:00Z",
"updated_at": "2026-04-02T00:00:00Z"
}
}