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

# Intake

> Reference for viewing client intake questionnaires and daily summaries.

The `intake` module provides access to onboarding questionnaires and daily summaries of dietary/lifestyle logs.

| Key                  | Value               |
| :------------------- | :------------------ |
| **Module Key**       | `intake`            |
| **Sensitivity**      | `health`            |
| **Consent Required** | `healthDataConsent` |

***

## Available Tools

### `get_client_intake_form`

Retrieve the client's submitted intake responses and onboarding answers.

* **Type:** Read-only
* **Important Input Fields:**
  * `clientId` (string, required): Unique identifier for the client.

### `get_client_daily_intake`

Retrieve daily logged totals (such as total calories, protein, carbs, fat, and water intake).

* **Type:** Read-only
* **Important Input Fields:**
  * `clientId` (string, required): Unique client ID.
  * `date` (string, required): Target date in YYYY-MM-DD format.

***

## Natural Language Examples

* *"Show me the onboarding questionnaire answers for Sarah Jenkins."*
* *"What was client client\_123's total calorie and protein intake yesterday?"*

***

## JSON-RPC Call Example (`get_client_daily_intake`)

```json theme={null}
{
  "jsonrpc": "2.0",
  "id": "intake-1",
  "method": "tools/call",
  "params": {
    "name": "get_client_daily_intake",
    "arguments": {
      "clientId": "client_abc123",
      "date": "2026-06-25"
    }
  }
}
```
