# `update_strategy_brief`

_Brand & strategy_

`write` `idempotent`

Update the brand's strategy brief (onboarding brief). Only these keys can change: niche, niches, topics, profileType, contentGoal, icpWho, icpWants, mainPain, promiseLine, toneStyle, contentPillars, tabooTopics, mediaTypes. Keys not in patch are kept; offer, site and connected-platform data are never touched. Returns the brief's editable keys.

## Parameters

| Parameter | Type | Required | Description |
| --- | --- | --- | --- |
| `brandId` | `string` | no |  |
| `patch` | `object` | yes |  |

## Example

### Prompt

```text
Update my strategy brief, my main audience pain point has changed to time management.
```

### JSON-RPC

```json
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "update_strategy_brief",
    "arguments": {
      "patch": {
        "niche": "example niche",
        "niches": [
          "example niche"
        ]
      }
    }
  }
}
```

### 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":"update_strategy_brief","arguments":{"patch":{"niche":"example niche","niches":["example niche"]}}}}'
```
