# `add_creator_fact`

_Creator knowledge_

`write`

Record a fact about the creator in the learning ledger (source manual, status active). category defaults to preferencia. If an active fact with the same text already exists it is returned instead of duplicated (created: false). Does not regenerate the creator memory.

## Parameters

| Parameter | Type | Required | Description |
| --- | --- | --- | --- |
| `brandId` | `string` | no |  |
| `fact` | `string` | yes |  |
| `category` | `"historia" \| "pilar" \| "argumento" \| "restricao" \| "preferencia" \| "produto_parceria" \| "marco" \| "voz" \| "publico" \| "objetivo"` | no |  |

## Example

### Prompt

```text
Remember that I started this brand after leaving my corporate job in 2023.
```

### JSON-RPC

```json
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "add_creator_fact",
    "arguments": {
      "fact": "example fact"
    }
  }
}
```

### 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":"add_creator_fact","arguments":{"fact":"example fact"}}}'
```
