# get_person

One person in full: work history, emails, ownership stakes and statements.

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

Group: People. Read only.

## When to use

Use it once you have a person's reference. It makes up to three API calls and combines them, so one tool call answers who someone is, where they've worked and what's been said about them.

Call `search_people` first.

## Parameters

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

## Example

Prompt: "What has been said about Elena Marchetti since she joined Halberd?"

```json
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "get_person",
    "arguments": {
      "reference": "a1b2c3d4-e5f6-4a7b-9c8d-e9f0a1b2c341"
    }
  }
}
```

Result (invented records):

```json
{
  "reference": "a1b2c3d4-e5f6-4a7b-9c8d-e9f0a1b2c341",
  "names": {
    "fullName": "Elena Marchetti",
    "firstName": "Elena",
    "lastName": "Marchetti"
  },
  "current_role": {
    "title": "Chief Financial Officer",
    "organisation": "Halberd Industrial Group",
    "start_date": "2026-09-01"
  },
  "experiences": [
    {
      "reference": "…",
      "organisation": {
        "reference": "3f2a9c1e-7b4d-4e8a-9c21-5d6e7f8a9b01",
        "name": "Halberd Industrial Group"
      },
      "occupation_title": "Chief Financial Officer",
      "startDate": "2026-09-01",
      "endDate": null
    },
    {
      "reference": "…",
      "organisation": {
        "reference": "9c8b7a6d-5e4f-4a3b-8c2d-1e0f9a8b7c21",
        "name": "Verity Metrology"
      },
      "occupation_title": "Group Finance Director",
      "startDate": "2019-04-01",
      "endDate": "2026-08-29"
    }
  ],
  "ownerships": [],
  "statements": {
    "by": [
      {
        "type": "speech",
        "summary": "Sets out her priorities for the first year",
        "text": "My focus is cash generation and a simpler group structure.",
        "subject": "Elena Marchetti",
        "source": "Company announcement",
        "published_at": "2026-08-04T07:00:00+00:00",
        "url": "https://www.example.com/halberd/2026/cfo-appointment"
      }
    ],
    "about": [
      {
        "type": "feedback",
        "summary": "The chair on the appointment",
        "text": "Elena brings deep experience of integrating acquired businesses.",
        "speaker": "Daniel Reyes",
        "source": "Company announcement",
        "published_at": "2026-08-04T07:00:00+00:00",
        "url": "https://www.example.com/halberd/2026/cfo-appointment"
      }
    ]
  }
}
```

## Errors

- `Not found.`: No person has that reference.
- `ownerships_note: Ownerships unavailable (…)`: Your plan excludes ownership data. The rest of the profile still returns.

## Built on

- GET /v1/profiles/{profileReference} (https://chikaraintel.com/docs/api/reference/profiles/get-profile.md)
- GET /v1/profiles/{profileReference}/ownership (https://chikaraintel.com/docs/api/reference/profiles/list-profile-ownership.md)
- GET /v1/profiles/{profileReference}/articles (https://chikaraintel.com/docs/api/reference/profiles/list-profile-articles.md)
