# `list_creator_facts`

_Creator knowledge_

`read` `idempotent`

List facts the app has learned about the creator (story, pillars, arguments, restrictions, preferences, products, milestones, voice, audience, goals). status defaults to active. limit max 100.

## Parameters

| Parameter | Type | Required | Description |
| --- | --- | --- | --- |
| `brandId` | `string` | no |  |
| `category` | `"historia" \| "pilar" \| "argumento" \| "restricao" \| "preferencia" \| "produto_parceria" \| "marco" \| "voz" \| "publico" \| "objetivo"` | no |  |
| `status` | `"active" \| "archived" \| "contradicted" \| "duplicate" \| "merged" \| "expired"` | no |  |
| `limit` | `integer` | no |  |

## Example

### Prompt

```text
What has Dalea learned about me and my story so far?
```

### JSON-RPC

```json
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "list_creator_facts",
    "arguments": {
      "brandId": "3f6c2a4e-8b1d-4c7a-9e2f-5a1b0c9d8e7f",
      "category": "historia"
    }
  }
}
```

### curl

```bash
curl -X POST https://app.usedalea.ai/api/mcp/mcp \
  -H "Authorization: Bearer dalea_mcp_..." \
  -H "Content-Type: application/json" \
  -H "Accept: application/json, text/event-stream" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"list_creator_facts","arguments":{"brandId":"3f6c2a4e-8b1d-4c7a-9e2f-5a1b0c9d8e7f","category":"historia"}}}'
```
