npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

mcp-xmind-aidea

v0.1.0

Published

MCP server for XMind - Customized with Rainbow theme and full XMind format compatibility

Readme

mcp-xmind-aidea

中文 | English


中文

一个基于模型上下文协议(MCP)的 XMind 思维导图服务器,支持读取、创建和查询 XMind 文件。基于 mcp-xmind v2.1.0 版本改造,新增 Rainbow 主题完整的 XMind 格式兼容。后续可根据原仓库进行版本升级,保持兼容性。

功能特性

读取能力

  • 解析完整的思维导图结构(多画布)
  • 智能模糊搜索
  • 任务管理和追踪(待办 + 计划任务)
  • 层级内容导航
  • 链接和引用提取(外部 URL + 内部 xmind:# 链接)
  • 多文件分析
  • 标签、标注、边界、摘要支持
  • 目录扫描

创建能力

  • 从结构化 JSON 创建 XMind 文件
  • Rainbow 主题(深色海军蓝风格,与 XMind 桌面端默认主题一致)
  • 节点类型topic(普通)、importantTopic(加粗深红色)、minorTopic(加粗棕色)
  • attributedTitle(所有节点自动添加,完整格式兼容)
  • content.xml 兼容文件(避免 XMind 桌面端打开警告)
  • 嵌套主题,支持备注(纯文本 + HTML 格式)
  • 标签、标记、标注、边界、摘要
  • 主题间关联线(按标题)
  • 跨画布内部链接(linkToTopic
  • 简单待办(复选框)
  • 计划任务 / 甘特图支持(日期、进度、优先级、工期、依赖关系)
  • 多种布局结构(顺时针、右向逻辑图、组织架构图、鱼骨图、时间线等)
  • 覆盖保护

安装

# 通过 npx(推荐)
npx -y mcp-xmind-aidea /path/to/your/xmind/files

# 或全局安装
npm install -g mcp-xmind-aidea
mcp-server-xmind /path/to/your/xmind/files

配置方式

Claude Desktop

claude_desktop_config.json 中添加:

{
  "mcpServers": {
    "XMind": {
      "command": "npx",
      "args": ["-y", "mcp-xmind-aidea", "/path/to/your/xmind/files"]
    }
  }
}

Claude Code(命令行)

claude mcp add xmind -- npx -y mcp-xmind-aidea /path/to/your/xmind/files

本地构建

{
  "mcpServers": {
    "XMind": {
      "command": "node",
      "args": ["/path/to/mcp-xmind-aidea/dist/index.js", "/path/to/your/xmind/files"]
    }
  }
}

可用工具

| 工具 | 说明 | |------|------| | read_xmind | 解析完整的思维导图结构 | | list_xmind_directory | 递归扫描目录中的 XMind 文件 | | read_multiple_xmind_files | 同时处理多个文件 | | search_xmind_files | 按文件名或内容搜索 | | extract_node | 智能模糊路径匹配提取节点 | | extract_node_by_id | 通过 ID 精确提取节点 | | search_nodes | 多条件搜索(标题、备注、标签、标注、任务) | | create_xmind | 从结构化数据创建 XMind 文件 |

示例:创建思维导图

{
  "name": "create_xmind",
  "arguments": {
    "path": "/path/to/output.xmind",
    "sheets": [{
      "title": "项目计划",
      "theme": "rainbow",
      "rootTopic": {
        "title": "我的项目",
        "structureClass": "org.xmind.ui.logic.right",
        "children": [
          {
            "title": "重要功能",
            "topicClass": "importantTopic",
            "children": [
              { "title": "子任务 1" },
              { "title": "子任务 2" }
            ]
          },
          {
            "title": "次要备注",
            "topicClass": "minorTopic"
          }
        ]
      }
    }]
  }
}

开发

npm install        # 安装依赖
npm run build      # 编译 TypeScript
npm test           # 运行测试

后续升级

当原项目 mcp-xmind 升级到 v2.2.0 或更高版本时,可以按照以下步骤同步升级:

# 1. 添加原项目作为上游仓库
cd /path/to/mcp-xmind-aidea
git remote add upstream https://github.com/apeyroux/mcp-xmind.git

# 2. 拉取原项目的最新更新
git fetch upstream

# 3. 合并原项目的更新到本地分支
git merge upstream/main

# 4. 解决可能的冲突(如果有)
# 5. 运行测试确保兼容性
npm test

# 6. 推送更新到我们的仓库
git push origin main

许可证

MIT


English

A Model Context Protocol (MCP) server for reading, creating and querying XMind mind maps. Based on mcp-xmind v2.1.0 by Alexandre Peyroux, customized with Rainbow theme and full XMind format compatibility. Future upgrades can be based on the original repository while maintaining compatibility.

Features

Reading

  • Parse complete mind map structure (multi-sheet)
  • Smart fuzzy search across mind maps
  • Task management and tracking (to-do + planned tasks)
  • Hierarchical content navigation
  • Link and reference extraction (external URLs + internal xmind:# links)
  • Multi-file analysis
  • Label, callout, boundary and summary support
  • Directory scanning

Writing

  • Create XMind files from structured JSON
  • Rainbow theme (dark navy style, matching XMind desktop default)
  • Node class types: topic, importantTopic (bold dark red), minorTopic (bold brown)
  • attributedTitle on all nodes (full XMind format compatibility)
  • content.xml compatibility file (prevents warnings in XMind desktop)
  • Nested topics with notes (plain text + HTML formatting)
  • Labels, markers, callouts, boundaries, summaries
  • Relationships between topics (by title)
  • Internal links between topics across sheets (linkToTopic)
  • Simple to-do tasks (checkbox)
  • Planned tasks with Gantt support (dates, progress, priority, duration, dependencies)
  • Layout structures (clockwise, logic.right, org-chart, fishbone, timeline, etc.)
  • Overwrite protection

Installation

# Via npx (recommended)
npx -y mcp-xmind-aidea /path/to/your/xmind/files

# Or install globally
npm install -g mcp-xmind-aidea
mcp-server-xmind /path/to/your/xmind/files

Configuration

Claude Desktop

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "XMind": {
      "command": "npx",
      "args": ["-y", "mcp-xmind-aidea", "/path/to/your/xmind/files"]
    }
  }
}

Claude Code (CLI)

claude mcp add xmind -- npx -y mcp-xmind-aidea /path/to/your/xmind/files

Local Build

{
  "mcpServers": {
    "XMind": {
      "command": "node",
      "args": ["/path/to/mcp-xmind-aidea/dist/index.js", "/path/to/your/xmind/files"]
    }
  }
}

Available Tools

| Tool | Description | |------|-------------| | read_xmind | Parse and extract complete mind map structure | | list_xmind_directory | Recursively scan for XMind files | | read_multiple_xmind_files | Process multiple files simultaneously | | search_xmind_files | Search files by name or content | | extract_node | Smart fuzzy path matching with ranked results | | extract_node_by_id | Direct node access by ID | | search_nodes | Multi-criteria search (title, notes, labels, callouts, tasks) | | create_xmind | Create XMind files from structured data |

Example: Create a Mind Map

{
  "name": "create_xmind",
  "arguments": {
    "path": "/path/to/output.xmind",
    "sheets": [{
      "title": "Project Plan",
      "theme": "rainbow",
      "rootTopic": {
        "title": "My Project",
        "structureClass": "org.xmind.ui.logic.right",
        "children": [
          {
            "title": "Important Feature",
            "topicClass": "importantTopic",
            "children": [
              { "title": "Sub-task 1" },
              { "title": "Sub-task 2" }
            ]
          },
          {
            "title": "Minor Note",
            "topicClass": "minorTopic"
          }
        ]
      }
    }]
  }
}

Development

npm install        # Install dependencies
npm run build      # Compile TypeScript
npm test           # Run tests

Future Upgrades

When the original mcp-xmind project is upgraded to v2.2.0 or higher, you can sync the updates by following these steps:

# 1. Add the original project as upstream
cd /path/to/mcp-xmind-aidea
git remote add upstream https://github.com/apeyroux/mcp-xmind.git

# 2. Fetch the latest updates from the original project
git fetch upstream

# 3. Merge the updates into your local branch
git merge upstream/main

# 4. Resolve any conflicts (if any)
# 5. Run tests to ensure compatibility
npm test

# 6. Push updates to our repository
git push origin main

License

MIT