# get_company_ownerships

Who owns an organisation, and what it owns.

Canonical: https://chikaraintel.com/docs/mcp/tools/get_company_ownerships

Group: Companies. Read only.

## When to use

Use it to map a group structure, or to list the funds behind an asset manager. Both directions come back in one call.

Call `search_companies` first.

## Parameters

- `reference` (uuid, body, required) The company's reference UUID.

## Example

Prompt: "What does Ashcombe Capital Partners own?"

```json
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "get_company_ownerships",
    "arguments": {
      "reference": "1a2b3c4d-5e6f-4a7b-8c9d-0e1f2a3b4c31"
    }
  }
}
```

Result (invented records):

```json
{
  "organisation": {
    "reference": "1a2b3c4d-5e6f-4a7b-8c9d-0e1f2a3b4c31",
    "name": "Ashcombe Capital Partners"
  },
  "profile_owners": [],
  "org_owners": [],
  "subsidiaries": [
    {
      "reference": "6b1d2e3f-4a5b-4c6d-8e7f-9a0b1c2d3e11",
      "name": "Northgate Robotics",
      "ownership_label": "25–50%",
      "is_controlling_interest": false,
      "relationship_type": "associate"
    }
  ]
}
```

## Errors

- `Not found.`: No organisation has that reference.

## Built on

- GET /v1/organisations/{organisationReference}/ownership (https://chikaraintel.com/docs/api/reference/organisations/get-organisation-ownership.md)
