get_node_description
Retrieve a specific mindmap node's description by its order index. Returns title and description text without loading the entire mindmap.
Instructions
Read the description of a single node in a mindmap by its order_index.
Returns the description text (Quill Delta JSON) for that specific node. Use this after get_mindmap_summary to read the content of a specific node without loading the entire mindmap. The description is capped at ~4 KB.
Args: id_mindmap: ID of the mindmap. order_index: Order index of the node to read (1-based).
Returns: JSON string — {id_mindmap, order_index, title, description} or {error: "Node with order_index=X not found in mindmap Y"}.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id_mindmap | Yes | ||
| order_index | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |