# `accept_brainstorm_suggestion`

_Ideas & trends_

`write`

Accept a brainstorm suggestion: creates a content card in the idea column from its title, idea and funnel stage (no AI), then marks the suggestion as added with contentId. scheduledDate (YYYY-MM-DD or ISO) overrides the suggestion's suggested date as the planned date. The suggestion's text is NOT changed; nothing is published. Fails if the suggestion was already added. Returns { suggestion, content }.

## Parameters

| Parameter | Type | Required | Description |
| --- | --- | --- | --- |
| `brandId` | `string` | no |  |
| `suggestionId` | `string` | yes |  |
| `scheduledDate` | `string` | no |  |

## Example

### Prompt

```text
Accept that brainstorm suggestion about morning routines and put it on my board.
```

### JSON-RPC

```json
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "accept_brainstorm_suggestion",
    "arguments": {
      "suggestionId": "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":"accept_brainstorm_suggestion","arguments":{"suggestionId":"3f6c2a4e-8b1d-4c7a-9e2f-5a1b0c9d8e7f"}}}'
```
