Loading...
pip install mindmap-mcp-server{
"mcpServers": {
"mindmap": {
"command": "uvx",
"args": ["mindmap-mcp-server", "--return-type", "html"]
}
}
}markdown-to-mindmap-contentConverts Markdown to an HTML mind map and returns the entire HTML content.
Generates HTML content, which could potentially contain malicious scripts if the input Markdown is crafted maliciously.
markdown-to-mindmap-fileConverts Markdown to an HTML mind map and saves it to a file in a mounted directory.
Writes files to a specified directory, which could lead to file system issues if not properly managed.
This MCP server is relatively safe for generating mindmaps. Using the `filePath` return type is safer than `html` because it avoids including the entire HTML content in prompts. Docker deployment adds a layer of isolation, but proper volume configuration is crucial.