Loading...

This MCP server converts Markdown to interactive mindmaps, offering HTML content or file path outputs, with Docker support for easier and safer deployment.
Boost this tool
Subscribe to listing upgrades or segmented pushes.
This MCP server converts Markdown to interactive mindmaps, offering HTML content or file path outputs, with Docker support for easier and safer deployment.
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.
Performance depends on the size of the Markdown input and the complexity of the mindmap. Docker adds some overhead but provides isolation.
Cost is primarily related to token usage if using the html return type. File output reduces token costs but requires managing file storage.
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.
None
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.
Autonomy is limited by the need for explicit invocation and parameter passing. Docker provides a sandboxed environment.
Production Tip
Use the `filePath` return type in production to minimize token usage and potential security risks.
You can install it using pip, uvx, or Docker. Refer to the installation instructions in the README.
Node.js is required for some installation methods. Docker is required for the Docker-based deployment.
Add the server configuration to your `claude_desktop_config.json` file, specifying the command and arguments.
`html` returns the entire HTML content of the mindmap, while `filePath` saves the mindmap to a file and returns the file path.
Mount a volume to the Docker container using the `-v` flag, mapping a local directory to `/output`.
Check that you have correctly mounted a volume to the Docker container and that the path format is correct for your operating system.
Yes, this server works with any MCP-compatible client.