工具 API
xmind_ create_ mindmap
Use this when the user wants to create a mind map, visualize hierarchical ideas, or generate a Xmind file. Do not use for flowcharts, tables, or linear content. Optionally pass folderId (a folderId from xmind_list_folders or a spaceId from xmind_list_spaces (a space's root folder id IS its spaceId)) to choose where the file is created; omit it for the default space. Creating the file only produces the outline — refine it before telling the user it is done. The reply already carries the map as anchored markdown, so every topic id you need for refining is in hand — do not call xmind_read_mindmap just to get them. xmind_set_structure and xmind_set_color_theme act on the whole sheet and need no topic ids; xmind_set_topic_style and xmind_set_topic_attrs do need them, and xmind_read_mindmap returns them.
调用信息
- 工具标识
- xmind.xmind_create_mindmap
- 服务提供方
- Xmind
- 平均响应
- 0 ms
- 近 7 天调用
- 0
输入参数
markdown必填Markdown content for the mind map structure. Content should be specific and detailed with concrete examples. Use headings (# through ######) for hierarchy levels, up to 6 levels supported. Use unordered lists (- * +) only for leaf-level details. The first H1 heading becomes the central topic. Each branch should have sufficient depth and detail. Example format: # Central Topic ## Main Topic ### Subtopic #### Detail Level - Specific detail item - Another concrete example
skeletonThe structure type for the mind map. Available options: "Mind Map" for traditional mind map structure, "Logic Chart" for logical flowchart structure, "Brace Map" for brace map structure, "Org Chart" for organizational chart structure, "Tree Chart" for tree chart structure, "Timeline" for chronological / sequential layout, "Fishbone" for cause - and - effect diagram structure.
folderIdWhere to create the file: a folderId from xmind_list_folders or a spaceId from xmind_list_spaces (a space's root folder id IS its spaceId). Omit to create in the default space.