get_selection
Retrieve currently selected topics in MindManager with customizable detail levels. Supports full, content, or text-only modes to streamline data extraction for mind map analysis.
Instructions
Retrieves the currently selected topics in MindManager.
Args:
mode (str): Detail level ('full', 'content', 'text'). Defaults to 'full'.
turbo_mode (bool): Enable turbo mode (text only). Defaults to False.
Returns:
Union[List[Dict[str, Any]], Dict[str, str]]: List of serialized selected topics 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_selectionArguments",
"type": "object"
}