# `run_creator_deep_analysis`

_Saved references_

`write` `10/day`

Run (or return the cached) AI deep analysis of a saved creator by creatorId. Consumes the daily quota (10/day, one long AI call). Returns { analysis } as JSON text; read it later with get_creator_analysis.

## Parameters

| Parameter | Type | Required | Description |
| --- | --- | --- | --- |
| `brandId` | `string` | no |  |
| `creatorId` | `string` | yes |  |

## Example

### Prompt

```text
Run a deep analysis on that creator I saved so I can learn from their style.
```

### JSON-RPC

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

### 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":"run_creator_deep_analysis","arguments":{"creatorId":"3f6c2a4e-8b1d-4c7a-9e2f-5a1b0c9d8e7f"}}}'
```
