Labsco
BangyiZhang logo

Xmind Generator

โ˜… 44

from BangyiZhang

A server for generating Xmind mind maps from various data sources.

๐Ÿ”ฅ๐Ÿ”ฅ๐Ÿ”ฅโœ“ VerifiedFreeAdvanced setup

Xmind Generator MCP Server

An MCP (Model Context Protocol) server for generating Xmind mind maps. This server allows LLMs to create structured mind maps through the MCP protocol.

Features

  • Generate Xmind mind maps with hierarchical topic structures
  • Support for topic notes, labels, markers, and relationships
  • Save mind maps to local files
  • Read existing .xmind files and export an outline as Markdown
  • Easy integration with Claude Desktop and other MCP clients

Available Tools

generate-mind-map

Generates an Xmind mind map from a hierarchical structure of topics.

Parameters:

  • title (string): The title of the mind map (root topic)
  • topics (array): Array of topics to include in the mind map
    • title (string): The title of the topic
    • ref (string, optional): Reference ID for the topic
    • note (string, optional): Note for the topic
    • labels (array of strings, optional): Labels for the topic
    • markers (array of strings, optional): Markers for the topic (format: "Category.name", e.g., "Arrow.refresh")
    • children (array, optional): Array of child topics
  • relationships (array, optional): Array of relationships between topics
  • outputPath (string, optional): Custom output path for the Xmind file. This overrides the environment variable if set.

read-mind-map

Reads an existing .xmind file and exports it as a Markdown outline.

Parameters:

  • inputPath (string): Path to the .xmind file
  • style (string, optional): Markdown style. Currently supports A (outline). (B reserved for future richer exports.)

Example:

Copy & paste โ€” that's it
{
  "inputPath": "/path/to/file.xmind",
  "style": "A"
}

Example

Here's an example of how to use the generate-mind-map tool:

Copy & paste โ€” that's it
{
  "title": "Project Plan",
  "topics": [
    {
      "title": "Research",
      "ref": "topic:research",
      "note": "Gather information about the market",
      "children": [
        {
          "title": "Market Analysis",
          "labels": ["Priority: High"]
        },
        {
          "title": "Competitor Research",
          "markers": ["Task.quarter"]
        }
      ]
    },
    {
      "title": "Development",
      "children": [
        {
          "title": "Frontend",
          "markers": ["Arrow.refresh"]
        },
        {
          "title": "Backend"
        }
      ]
    }
  ]
}

License

MIT