Internal
Mindmap
Create a mindmap for brainstorming, topic exploration, and hierarchical idea organization.
Send "type": "mindmap".
Create a mindmap for brainstorming, topic exploration, and hierarchical idea organization.
Also available as the MCP tool render_mindmap. The same payload works through either surface.
Fields
nodeDataobjectrequiredRoot node with id, topic, root=true, and children array. Children have direction (0=left, 1=right)
Child attributes
idstringtopicstringimagestringOptional emoji icon for the node (e.g. "💡", "🎯"). Use sparingly on key nodes.
rootbooleanchildrenobject[]Example
{
"type": "mindmap",
"data": {
"nodeData": {
"id": "string",
"topic": "string",
"image": "string",
"root": false,
"children": [
{
"id": "string",
"topic": "string",
"image": "string",
"direction": 0,
"children": [
{}
]
}
]
}
}
}
Was this page helpful?