# `regenerate_brainstorm`

_Ideas & trends_

`write` `5/day`

Replace the brand's active brainstorm set with freshly generated suggestions (optional manualContext steers them). Consumes the daily quota (5/day, several AI calls). Returns { suggestions } like list_brainstorm_suggestions.

## Parameters

| Parameter | Type | Required | Description |
| --- | --- | --- | --- |
| `brandId` | `string` | no |  |
| `manualContext` | `string` | no |  |

## Example

### Prompt

```text
Generate a fresh batch of content ideas for me, focused on beginner mistakes.
```

### JSON-RPC

```json
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "regenerate_brainstorm",
    "arguments": {
      "brandId": "3f6c2a4e-8b1d-4c7a-9e2f-5a1b0c9d8e7f",
      "manualContext": "example manual context"
    }
  }
}
```

### 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":"regenerate_brainstorm","arguments":{"brandId":"3f6c2a4e-8b1d-4c7a-9e2f-5a1b0c9d8e7f","manualContext":"example manual context"}}}'
```
