Lists all brainstorm ideas for a project.
Tool Name
list_brainstorm_ideas
Description
The list_brainstorm_ideas tool retrieves all active brainstorm ideas for a specific project. Deleted ideas are excluded. Results are sorted by creation date (newest first). Changes made via Zero Sync or the AI Assistant are instantly available.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| projectId | string | Yes | Project UUID (valid UUID v4) |
Example Request
{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "list_brainstorm_ideas",
"arguments": {
"projectId": "6f8351e0-d499-4698-8b1d-e7789b8e0236"
}
},
"id": 1
}Example Response
{
"jsonrpc": "2.0",
"result": {
"content": [
{
"type": "text",
"text": "{\"projectId\":\"6f8351e0-d499-4698-8b1d-e7789b8e0236\",\"total\":2,\"ideas\":[{\"id\":\"a1b2c3d4-...\",\"title\":\"Hero section with video background\",\"content\":\"Use a short loop video...\",\"tags\":[\"design\",\"hero\"],\"priority\":\"high\",\"createdAt\":\"2026-03-14T10:00:00Z\"},{\"id\":\"e5f6g7h8-...\",\"title\":\"Add testimonials carousel\",\"content\":\"\",\"tags\":[\"social-proof\"],\"priority\":\"medium\",\"createdAt\":\"2026-03-14T09:30:00Z\"}]}"
}
]
},
"id": 1
}Response Fields
| Field | Type | Description |
|---|---|---|
| projectId | string | Project ID |
| total | number | Total number of ideas |
| ideas | array | List of brainstorm ideas |
| ideas[].id | string | Idea UUID |
| ideas[].title | string | Idea title |
| ideas[].content | string | Idea content/description |
| ideas[].tags | string[] | Tags assigned to the idea |
| ideas[].priority | string | Priority: low, medium, or high |
| ideas[].createdBy | string | User ID of the creator |
| ideas[].createdAt | string | Creation timestamp |
| ideas[].updatedAt | string | Last update timestamp |
Errors
| Code | Meaning |
|---|---|
| -32602 | Invalid parameters (UUID format) |