home / mcp / mindmap mcp server
mindmap, mcp server, artifact
Configuration
View docs{
"mcpServers": {
"yuchenssr-mindmap-mcp-server": {
"command": "uvx",
"args": [
"mindmap-mcp-server",
"--return-type",
"html"
]
}
}
}You can run a Mindmap MCP Server to convert Markdown content into interactive mindmaps and deliver them to compatible MCP clients. This server streamlines turning Markdown hierarchies into exportable HTML mindmaps or file paths you can open in a browser, useful for quick visualization in chats and IDEs.
Connect to the Mindmap MCP Server from your MCP client by choosing a local stdio-based setup or running the server in Docker. You can request the generated mindmap as an HTML document or as a file path that you can open in a browser.
{
"mcpServers": {
"mindmap": {
"command": "uvx",
"args": ["mindmap-mcp-server", "--return-type", "html"]
}
}
}If you are using uvx, you can choose to receive the full HTML content or a file path to a pre-generated file. This is convenient for previewing mindmaps inside your AI client’s artifacts or for saving a ready-to-view file.
If you prefer Docker, you can run the provided container and let it output a mindmap to a mounted directory. This approach is robust across systems and avoids local tool conflicts.
Converts Markdown to an HTML mindmap and returns the entire HTML content. Suitable for quick, simple mindmaps.
Converts Markdown to an HTML mindmap and saves it to a file in the mounted directory. Useful for complex mindmaps or when you want to save the output for later use.