xmind-mcp
Click on "Install 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: XMind AI MCP
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 installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Erlichooo/xmind-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server