# `dismiss_brainstorm_suggestion`

_Ideas & trends_

`write` `idempotent`

Mark a brainstorm suggestion as dismissed so it leaves the pending list. Does NOT delete it, does NOT touch any content card already created from it, and publishes nothing. Returns { suggestion }.

## Parameters

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

## Example

### Prompt

```text
Dismiss that brainstorm suggestion, I am not interested in that idea.
```

### JSON-RPC

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