MindManager MCP Server

MIT License
1
  • Apple

serialize_current_mindmap_to_json

Convert the active mindmap into JSON format with ID mapping, allowing customizable detail levels and optional RTF exclusion for efficient data export and integration.

Instructions

Serializes the currently loaded mindmap to a detailed JSON object with ID mapping. Args: ignore_rtf (bool): Whether to ignore RTF content. Defaults to True. mode (str): Detail level ('full', 'content', 'text'). Defaults to 'full'. turbo_mode (bool): Enable turbo mode (text only). Defaults to False. Returns: Union[Dict[str, Any], Dict[str, str]]: JSON serializable dictionary or error dictionary.

Input Schema

NameRequiredDescriptionDefault
ignore_rtfNo
modeNocontent
turbo_modeNo

Input Schema (JSON Schema)

{ "properties": { "ignore_rtf": { "default": true, "title": "Ignore Rtf", "type": "boolean" }, "mode": { "default": "content", "title": "Mode", "type": "string" }, "turbo_mode": { "default": true, "title": "Turbo Mode", "type": "boolean" } }, "title": "serialize_current_mindmap_to_jsonArguments", "type": "object" }
ID: ce8xu0m06f