markdown_to_mindmap
Convert Markdown documents into interactive mind maps for better visualization and organization of ideas. Optionally open the mind map directly in a browser for immediate use.
Instructions
Convert a Markdown document into an interactive mind map
Input Schema
Name | Required | Description | Default |
---|---|---|---|
markdown | Yes | Markdown content to convert into a mind map | |
open | No | Whether to open the generated mind map in a browser (default: false) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"markdown": {
"description": "Markdown content to convert into a mind map",
"type": "string"
},
"open": {
"default": false,
"description": "Whether to open the generated mind map in a browser (default: false)",
"type": "boolean"
}
},
"required": [
"markdown"
],
"type": "object"
}