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: 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 installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityDmaintenanceEnables conversion of multiple file formats (Markdown, HTML, Word, Excel, etc.) to XMind mind maps with AI-powered analysis for structure optimization and quality assessment.Last updated16MIT
- Alicense-qualityCmaintenanceEnables AI clients to directly read and write Excel files, including reading structure, writing formulas and data, and diagnosing errors.Last updatedMIT
- 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.Last updated13MIT
- Flicense-qualityCmaintenanceEnables AI assistants to read, search, and convert MindManager .mmap files without installing MindManager.Last updated
Related MCP Connectors
Search and reason over your Obsidian-style Markdown vault, right from ChatGPT.
Connect AI assistants to your GitHub-hosted Obsidian vault to seamlessly access, search, and analy…
Your memory, everywhere AI goes. Build knowledge once, access it via MCP anywhere.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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