get_mindmap
Retrieve a mindmap's complete structure, including all nodes and metadata. Use to inspect node details before editing or to debug missing elements.
Instructions
Read a mindmap (full metadata + all nodes).
Returns the complete mindmap object with metadata and a 'nodes' array. Each node has ~25 fields (position, style, title, descriptions, etc.).
⚠️ LARGE RESPONSE: for a mindmap with 60+ nodes and Quill Delta descriptions, the response can exceed 2 MB. Only call this when you actually need to inspect individual nodes. Do NOT use it to verify a previous inject_directory_to_mindmap or replace_mindmap operation — those tools return a summary that is sufficient for validation.
Typical use cases:
Reading node structure before add_nodes or update_nodes_style
Debugging missing/misplaced nodes
Extracting specific node data
Args: id_mindmap: Mindmap ID
Returns: JSON string — {meta: {...}, nodes: [{...}, ...]}.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id_mindmap | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |