get_mindmap
Retrieve and serialize mind map structures from MindManager with customizable detail levels for efficient data extraction and integration.
Instructions
Retrieves the current mind map structure from MindManager.
Args:
mode (str): Detail level ('full', 'content', 'text'). Defaults to 'full'.
turbo_mode (bool): Enable turbo mode (text only). Defaults to False.
Returns:
Dict[str, Any]: Serialized mind map structure or error dictionary.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
mode | No | full | |
turbo_mode | No |
Input Schema (JSON Schema)
{
"properties": {
"mode": {
"default": "full",
"title": "Mode",
"type": "string"
},
"turbo_mode": {
"default": false,
"title": "Turbo Mode",
"type": "boolean"
}
},
"title": "get_mindmapArguments",
"type": "object"
}