Xmind Generator MCP Server
Xmind ジェネレーター MCP サーバー
Xmindマインドマップを生成するためのMCP(Model Context Protocol)サーバー。このサーバーにより、LLMはMCPプロトコルを介して構造化されたマインドマップを作成できます。
特徴
階層的なトピック構造を持つXmindマインドマップを生成する
トピックのメモ、ラベル、マーカーのサポート
マインドマップをローカルファイルに保存する
Claude Desktop や他の MCP クライアントとの簡単な統合
Related MCP server: MCP Thinking Server
前提条件
Node.js : バージョン18以上が必要です
Xmind : 生成されたマインドマップを開いて編集するには、 Xmindデスクトップ アプリケーションをインストールします。
Claude Desktop : このツールを拡張機能として使用するために必要
Claude Desktopでのセットアップ
オプション1: npxを使用する(推奨)
Claude Desktop 構成ファイルを作成または編集します。
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.json
次の構成を追加します。
{ "mcpServers": { "xmind-generator": { "command": "npx", "args": ["xmind-generator-mcp"], "env": { "outputPath": "/path/to/save/xmind/files", "autoOpenFile": "false" } } } }Claudeデスクトップを再起動します
会話の中でXmindジェネレータを使い始めましょう
オプション2: ローカルインストール
リポジトリをクローンします。
git clone https://github.com/BangyiZhang/xmind-generator-mcp.git cd xmind-generator-mcp npm install npm run buildClaude Desktop 構成ファイルを作成または編集します。
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.json
次の構成を追加します。
{ "mcpServers": { "xmind-generator": { "command": "node", "args": ["path/to/xmind-generator-mcp/dist/index.js"], "env": { "outputPath": "/path/to/save/xmind/files", "autoOpenFile": "false" } } } }path/to/xmind-generator-mcpクローンしたプロジェクトの実際のパスに置き換えます。Claudeデスクトップを再起動します
会話の中でXmindジェネレータを使い始めましょう
注: envセクションはオプションです。サーバーの環境変数を設定できます。
outputPath: Xmindファイルが保存されるデフォルトのディレクトリまたはファイルパス。これは、ツール呼び出し時のoutputPathパラメータで上書きできます。autoOpenFile: 生成された Xmind ファイルを自動的に開くかどうかを制御します。自動開きを無効にするには「false」に設定します(デフォルトは「true」)。
利用可能なツール
マインドマップを生成する
トピックの階層構造から Xmind マインド マップを生成します。
パラメータ:
title(文字列): マインドマップのタイトル(ルートトピック)topics(配列): マインドマップに含めるトピックの配列title(文字列): トピックのタイトルref(文字列、オプション): トピックの参照IDnote(文字列, オプション): トピックのメモlabels(文字列の配列、オプション): トピックのラベルmarkers(文字列の配列、オプション):トピックのマーカー(形式:「Category.name」、例:「Arrow.refresh」)children(配列、オプション): 子トピックの配列
relationships(配列、オプション):トピック間の関係の配列outputPath(文字列、オプション): Xmindファイルのカスタム出力パス。環境変数が設定されている場合は、このパスが優先されます。
例
以下はgenerate-mind-mapツールの使用方法の例です。
{
"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"
}
]
}
]
}ライセンス
マサチューセッツ工科大学
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Tools
Related MCP Servers
- AlicenseDqualityDmaintenanceAn MCP server that enables users to generate structured XMind mind maps with hierarchical topics, notes, and labels through natural language. It features automatic file saving to the local Documents folder and can automatically open generated maps in the XMind application.1631MIT
- Alicense-qualityDmaintenanceA powerful MCP server that enhances LLMs with advanced sequential thinking capabilities, supporting 19 thinking modes for structured reasoning and complex cognitive tasks.16MIT
- AlicenseBqualityBmaintenanceMCP server that enables LLMs to create and edit draw.io diagrams using high-level intent commands, with automatic layout and styling.483MIT
- AlicenseAqualityCmaintenanceAn MCP server that gives LLMs structured, verifiable memory by storing facts in a knowledge graph and enabling logic-based reasoning through natural dialogue.143MIT
Related MCP Connectors
MCP server for generating rough-draft project plans from natural-language prompts.
MCP server for AI dialogue using various LLM models via AceDataCloud
MCP Server for Slima - AI Writing IDE for Novel Authors with AI Beta Reader.
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/BangyiZhang/xmind-generator-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server