MindManager MCP Server

MIT License
1
  • Apple

serialize_current_mindmap_to_markdown

Convert the currently loaded mindmap to Markdown format, with options to include notes, adjust detail level, and enable text-only turbo mode.

Instructions

Serializes the currently loaded mindmap to Markdown format. Args: include_notes (bool): If True, include notes in the serialization. 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[str, Dict[str, str]]: Markdown formatted string or error dictionary.

Input Schema

NameRequiredDescriptionDefault
include_notesNo
modeNocontent
turbo_modeNo

Input Schema (JSON Schema)

{ "properties": { "include_notes": { "default": true, "title": "Include Notes", "type": "boolean" }, "mode": { "default": "content", "title": "Mode", "type": "string" }, "turbo_mode": { "default": false, "title": "Turbo Mode", "type": "boolean" } }, "title": "serialize_current_mindmap_to_markdownArguments", "type": "object" }
ID: ce8xu0m06f