xmind-mcp
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@xmind-mcpHelp me create a mind map about AWS architecture, save to ~/Desktop/aws.xmind"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
xmind-mcp
An MCP (Model Context Protocol) server that lets Claude read and write .xmind files. Use Claude to generate, edit, and analyze mind maps directly in XMind.
Features
Read existing
.xmindfiles as a structured JSON treeCreate new mind maps from scratch
Add, update, and delete nodes
Supports basic node styles (background color, text color, branch color)
Includes a Claude Code skill for guided mind map editing workflow
Related MCP server: Excel Formula Helper MCP Server
Requirements
Python 3.10+
XMind (to view the generated files)
Installation
1. Install dependencies
pip install mcp2. Register the MCP server
Add to ~/.mcp.json:
{
"mcpServers": {
"xmind-tools": {
"command": "python3",
"args": ["/path/to/xmind-mcp/server.py"]
}
}
}3. (Optional) Install the skill
Copy skills/xmind-editor/ to your Claude Code skills directory:
cp -r skills/xmind-editor ~/.claude/skills/Usage
Restart Claude Code after registration. Then ask Claude:
Help me create a mind map about AWS architecture, save to ~/Desktop/aws.xmindClaude will plan the structure, confirm with you, then write the file. Open or reload the file in XMind to see the result.
Available Tools
Tool | Description |
| Read an |
| Write a full JSON tree to an |
| Add a child node under a parent |
| Update a node's title or style |
| Delete a node and its children |
Node Format
{
"id": "uuid",
"title": "Node title",
"style": {
"bg": "#ffffff",
"fg": "#000000",
"branch": "#3498db"
},
"children": []
}All style fields are optional. Colors are hex strings (#RRGGBB).
Colors
Field | Description | Example |
| Node background color |
|
| Text color |
|
| Branch line color |
|
| Border line color |
|
Shape
Values sourced from official xmind-sdk-js and open source XMind implementations.
Field | Description | Values |
| Node shape |
|
Branch and Border
Field | Description | Values |
| Branch curve style |
|
| Branch line pattern |
|
| Border line color | hex |
| Border line width |
|
| Border line pattern |
|
Text
Field | Description | Example |
| Bold |
|
| Italic |
|
| Strikethrough |
|
| Font size |
|
shapeandbranch_stylevalues are prefixed automatically — use the short name only (e.g."roundedRect", not"org.xmind.topicShape.roundedRect").
Example with styles
{
"id": "root",
"title": "My Project",
"children": [
{
"id": "node-1",
"title": "Critical",
"style": {
"bg": "#ff0000",
"fg": "#ffffff",
"branch": "#ff0000",
"bold": true,
"shape": "roundedRect"
},
"children": []
},
{
"id": "node-2",
"title": "Reference",
"style": {
"branch_pattern": "dash",
"border_color": "#999999",
"border_width": "1pt"
},
"children": []
}
]
}Development
pip install -e ".[dev]"
pytest tests/License
MIT
This server cannot be deployed
Maintenance
Related MCP Connectors
Create, edit, and organize MindMeister mind maps from your AI assistant.
- MindlifyOAuthco.mindlify
Turn AI conversations into visual knowledge maps. Create, connect, search, and organize thoughts.
Read and write KukGit repositories, files, issues and pull requests from an AI assistant.
Create, read and live-edit visual boards, Kanban plans, Gantt timelines and diagrams with AI agents.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceEnables conversion of multiple file formats (Markdown, HTML, Word, Excel, etc.) to XMind mind maps with AI-powered analysis for structure optimization and quality assessment.90 PyPI16MIT
- AlicenseNot gradedqualityDmaintenanceEnables AI clients to directly read and write Excel files, including reading structure, writing formulas and data, and diagnosing errors.MIT
- AlicenseAqualityBmaintenanceEnables AI agents to build and interact with mind maps on mindmap.io. Agents can create, read, update, and delete maps and nodes, run prompts on nodes, and auto-expand topics into follow-up questions.13MIT
- FlicenseNot gradedqualityCmaintenanceEnables AI assistants to read, search, and convert MindManager .mmap files without installing MindManager.-