MindManager MCP Server

MIT License
1
  • Apple

serialize_current_mindmap_to_mermaid

Convert the currently loaded mindmap into Mermaid format for visualization. Customize output with detail levels, IDs-only, or turbo mode for text-only results.

Instructions

Serializes the currently loaded mindmap to Mermaid format. Args: id_only (bool): If True, only include IDs without detailed attributes. Defaults to False. mode (str): Detail level ('full', 'content', 'text'). Defaults to 'full'. turbo_mode (bool): Enable turbo mode (text only). Defaults to False. Returns: Union[str, Dict[str, str]]: Mermaid formatted string or error dictionary.

Input Schema

NameRequiredDescriptionDefault
id_onlyNo
modeNofull
turbo_modeNo

Input Schema (JSON Schema)

{ "properties": { "id_only": { "default": false, "title": "Id Only", "type": "boolean" }, "mode": { "default": "full", "title": "Mode", "type": "string" }, "turbo_mode": { "default": false, "title": "Turbo Mode", "type": "boolean" } }, "title": "serialize_current_mindmap_to_mermaidArguments", "type": "object" }
ID: ce8xu0m06f