Mind Map
Min mapMCP Server【脑图生成 MCP Server】
What is Mind Map?
Mind Map is a Model Context Protocol (MCP) server that allows AI assistants like Claude, Cursor, and VS Code to min mapmcp server【脑图生成 mcp server】
Min mapMCP Server【脑图生成 MCP Server】
This server falls under the Knowledge & Memory category on MCPgee, the world's largest MCP server directory with 33,000+ servers.
Features
- Min mapMCP Server【脑图生成 MCP Server】
Use Cases
Maintainer
Works with
Installation
Manual Installation
npx mind-mapConfiguration
Configuration Details
claude_desktop_config.json
Performance
Response Metrics
Resource Usage
How to Set Up and Use Mind Map
Mind Map MCP Server is a Python-based server that converts Markdown-formatted text into visually rendered mind map images (PNG) using the markmap-cli and Playwright Chromium renderer. It exposes two tools—create_mind_map for generating images from structured Markdown and list_images for querying previously generated maps by date or name. The server supports multiple storage backends including local disk, Amazon S3, Azure Blob, Google Cloud Storage, Aliyun OSS, and MinIO, making it suitable for both personal use and production deployments where generated diagrams need to be shared via URL.
Prerequisites
- Python 3.8 or higher installed
- Node.js installed (required for markmap-cli)
- Docker and Docker Compose (recommended for easiest setup)
- An MCP-capable client such as Claude Desktop or Claude Code
- Optional: Cloud storage credentials (AWS, Azure, GCP, Aliyun) if not using local storage
Clone the repository
Clone the mind-map-mcp-server repository to your local machine.
git clone https://github.com/sawyer-shi/mind-map-mcp-server.git
cd mind-map-mcp-serverStart with Docker (recommended)
The easiest way to run the server is with Docker Compose, which bundles the MCP service on port 8091 and a static file server on port 8090.
docker-compose up -dLocal installation (alternative)
If you prefer running without Docker, install Python dependencies, markmap-cli, and the Playwright Chromium browser.
pip install -r requirements.txt
npm install -g markmap-cli
playwrigh install chromium
python main.pyConfigure storage backend
Set STORAGE_TYPE to your preferred backend. For local storage, the default of 'local' works out of the box. For S3, set the AWS credentials and region environment variables.
export STORAGE_TYPE=local
export LOCAL_HOST=127.0.0.1
# For S3:
# export STORAGE_TYPE=amazon_s3
# export AWS_ACCESS_KEY_ID=...
# export AWS_SECRET_ACCESS_KEY=...
# export AWS_DEFAULT_REGION=us-east-1Configure your MCP client
Add the Mind Map server to your Claude Desktop configuration. The server communicates over HTTP on port 8091.
{
"mcpServers": {
"mind-map": {
"command": "python",
"args": ["main.py"],
"cwd": "/path/to/mind-map-mcp-server"
}
}
}Mind Map Examples
Client configuration
Configure Claude Desktop to connect to a locally running Mind Map MCP server using the uvx auto-start method.
{
"mcpServers": {
"mind-map": {
"command": "python",
"args": ["main.py"],
"cwd": "/path/to/mind-map-mcp-server",
"env": {
"STORAGE_TYPE": "local",
"LOCAL_HOST": "127.0.0.1"
}
}
}
}Prompts to try
Use these prompts in Claude to generate and manage mind maps from structured content.
- "Create a mind map from this outline: # Learning Python\n## Basics\n### Variables\n### Loops\n## Advanced\n### Decorators\n### Async"
- "Generate a high-quality mind map of the software development lifecycle"
- "Show me all mind maps I created today"
- "List images with 'project' in the name"
- "Create a mind map for my presentation on machine learning concepts"Troubleshooting Mind Map
Chromium/Playwright launch fails during image generation
Run 'playwright install chromium' to download the browser binary. On Linux servers, also install system dependencies with 'playwright install-deps chromium'.
Mind map images not accessible via URL
Ensure LOCAL_HOST is set to your machine's actual IP address (not 127.0.0.1) when accessing from other machines. For remote access, set LOCAL_HOST to your server's public IP or hostname.
markmap-cli not found error
Install markmap-cli globally with 'npm install -g markmap-cli' and verify Node.js is in your PATH. The server requires both markmap-cli and Playwright to render mind maps.
Frequently Asked Questions about Mind Map
What is Mind Map?
Mind Map is a Model Context Protocol (MCP) server that min mapmcp server【脑图生成 mcp server】 It connects AI assistants to external tools and data sources through a standardized interface.
How do I install Mind Map?
Follow the installation instructions on the Mind Map GitHub repository. Clone the repo, install dependencies, and add the server config to your AI client.
Which AI clients work with Mind Map?
Mind Map works with all major MCP-compatible AI clients including Claude Desktop, Claude Code, Cursor, VS Code (GitHub Copilot), Windsurf, and Cline.
Is Mind Map free to use?
Yes, Mind Map is open source and available under the MIT license. You can use it freely in both personal and commercial projects.
Mind Map Alternatives — Similar Knowledge & Memory Servers
Looking for alternatives to Mind Map? Here are other popular knowledge & memory servers you can use with Claude, Cursor, and VS Code.
MemPalace
★ 52.6kA local AI memory system that stores all conversations verbatim and organizes them into navigable structures. It provides 19 MCP tools for AI assistants to search and retrieve past decisions, debugging sessions, and architecture debates automatically
Kratos
★ 25.7k🏛️ Memory System for AI Coding Tools - Never explain your codebase again. MCP server with perfect project isolation, 95.8% context accuracy, and the Four Pillars Framework.
Context Mode
★ 15.4kAn MCP server that preserves LLM context by intercepting large data outputs and returning only concise summaries or relevant sections. It enables efficient sandboxed code execution, file processing, and documentation indexing across multiple programm
Memu
★ 13.7kMemory for 24/7 proactive agents like OpenClaw.
MemOS
★ 9.3kMemOS (Memory Operating System) is a memory management operating system designed for AI applications. Its goal is: to enable your AI system to have long-term memory like a human, not only remembering what users have said but also actively invoking, u
Everos
★ 5.4kBuild, evaluate, and integrate long-term memory for self-evolving agents.
Browse More Knowledge & Memory MCP Servers
Explore all knowledge & memory servers available in the MCPgee directory. Each server includes setup guides for Claude, Cursor, and VS Code.
Set Up Mind Map in Your Editor
Choose your AI client for step-by-step setup instructions.
Quick Config Preview
Add this to your claude_desktop_config.json or .cursor/mcp.json
Ready to use Mind Map?
Browse our complete directory of 33,000+ MCP servers, read setup guides for your editor, and start building with the Model Context Protocol.