# get_company

One organisation in full: domains, industries, listings, addresses and headline AUM.

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

Group: Companies. Read only.

## When to use

Use it once you have an organisation's reference and want the whole record.

Call `search_companies` first.

## Parameters

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

## Example

Prompt: "Tell me about Halberd Industrial Group."

```json
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "get_company",
    "arguments": {
      "reference": "3f2a9c1e-7b4d-4e8a-9c21-5d6e7f8a9b01"
    }
  }
}
```

Result (invented records):

```json
{
  "reference": "3f2a9c1e-7b4d-4e8a-9c21-5d6e7f8a9b01",
  "name": "Halberd Industrial Group",
  "description": "Precision components for aerospace and energy customers.",
  "totals": {
    "employees": 3200
  },
  "size": "Large (1,001–5,000 employees)",
  "tickers": [
    {
      "value": "HLBD",
      "exchange": {
        "name": "London Stock Exchange",
        "code": "LSE"
      },
      "is_primary_listing": true
    }
  ],
  "domains": [
    {
      "domain": "halberd.example",
      "confidence_score": 0.97,
      "is_valid": true
    }
  ],
  "industries": [
    {
      "code": "201060",
      "name": "Industrial Machinery",
      "level": 4,
      "is_primary": true
    }
  ],
  "status": "active",
  "verified": true,
  "confidence": 88
}
```

## Errors

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

## Built on

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