MindManager MCP Server
MindManager MCP サーバー
mindmライブラリ用のモデル コンテキスト プロトコル (MCP) サーバー実装。Windows および macOS 上の MindManager と対話するための標準化されたインターフェイスを提供します。
概要
このサーバーは、LLMにコンテキストとツールを提供するための標準化された方法であるモデルコンテキストプロトコル(MCP)を介して、MindManagerとプログラム的にやり取りすることを可能にします。このサーバーは、 mindmライブラリを活用して、MindManagerのドキュメント、トピック、リレーションシップ、その他のマインドマップ要素を操作します。
例:

Related MCP server: Mermaid MCP Server
特徴
マインドマップの構造と中心トピックを取得する
マインドマップをMermaid、Markdown、JSON形式にエクスポートしてLLMチャットで使用できるようにします。
MindManager のインストールとライブラリ フォルダに関する情報を取得します
MindManagerから現在の選択を取得する
計画されている機能
シリアル化されたデータから新しいマインドマップを作成する
トピックとサブトピックを追加、変更、操作する
トピック間の関係を追加する
トピックにタグを追加する
ドキュメントの背景画像を設定する
要件
Python 3.12以上
mcpパッケージ (モデルコンテキストプロトコル SDK)mindmライブラリ(このプロジェクトに含まれています)MindManager(サポート対象バージョン:23以降)がWindowsまたはmacOSにインストールされている
macOSへのインストール
# Clone the repository (if you're using it from a repository)
git clone https://github.com/robertZaufall/mindm-mcp.git
cd mindm-mcp
# create a virtual environment for Python
brew install uv # if needed
uv pip install -r pyproject.toml
# alternative: manual installation of modules
uv add "mcp[cli]"
uv add fastmcp
uv add markdown-it-py
uv add -U --index-url=https://test.pypi.org/simple/ --extra-index-url=https://pypi.org/simple/ mindm mindm-mcpインストールウィンドウ
# Change to DOS command prompt
cmd
# Clone the repository (if you're using it from a repository)
git clone https://github.com/robertZaufall/mindm-mcp.git
cd mindm-mcp
# create a virtual environment for Python
pip install uv # if needed
uv pip install -r pyproject.toml
# install nodejs
choco install nodejs # if you have chocolatey installed. If not install nodejs otherwise
refreshenv
node -v
npm install -g npx使用法
MCP検査官
# run mcp with inspector
uv run --with mind --with fastmcp --with markdown-it-py mcp dev mindm_mcp/server.pyクロードデスクトップ
ローカルPythonファイル
必要に応じてローカル ファイルのパスを調整します。
{
"mcpServers": {
"mindm (MindManager)": {
"command": "uv",
"args": [
"run",
"--with",
"mindm>=0.0.4.6",
"--with",
"fastmcp",
"--with",
"markdown-it-py",
"/Users/master/git/mindm-mcp/mindm_mcp/server.py"
]
}
}
}パッケージリポジトリからのモジュール
必要に応じてVIRTUAL_ENVを調整します。
{
"mcpServers": {
"mindm (MindManager)": {
"command": "uv",
"args": [
"run",
"--with",
"mindm>=0.0.4.6",
"--with",
"mindm-mcp>=0.0.1.50",
"--with",
"fastmcp",
"--with",
"markdown-it-py",
"-m",
"mindm_mcp.server"
],
"env": {
"VIRTUAL_ENV": "/Users/master/git/mindm-mcp/.venv"
}
}
}
}ヒント: Windows 上で MCP サーバーがハンマー アイコンとともに表示されない場合は、Claude Desktop を閉じて、すべてのバックグラウンド プロセスを終了します。
MCPツール
サーバーは、モデル コンテキスト プロトコルを通じて次のツールを公開します。
ドキュメントインタラクション
get_mindmap: MindManager から現在のマインドマップ構造を取得します。get_selection: MindManager で現在選択されているトピックを取得します。get_library_folder: MindManager ライブラリ フォルダへのパスを取得します。get_grounding_information: マインドマップからグラウンディング情報(中心トピック、選択されたサブトピック)を抽出します。
シリアル化
serialize_current_mindmap_to_mermaid: 現在ロードされているマインドマップをMermaid形式にシリアル化しますserialize_current_mindmap_to_markdown: 現在読み込まれているマインドマップをMarkdown形式にシリアル化しますserialize_current_mindmap_to_json: 現在読み込まれているマインドマップを、IDマッピング付きの詳細なJSONオブジェクトにシリアル化します。
プラットフォームサポート
Windows : トピック、メモ、アイコン、画像、タグ、リンク、関係、RTF フォーマットの完全サポート
macOS : トピック、メモ、関係のサポート (Windows に比べてサポートが制限されています)
クロードや他のLLMとの統合
この MCP サーバーは、Claude Desktop またはその他の MCP 互換アプリケーションにインストールすることができ、LLM は次のことが可能になります。
マインドマップのコンテンツにアクセスする
マインドマップを操作する(近日公開)
LLM で生成されたコンテンツに基づいて新しいマインドマップを作成する (近日公開予定)
トラブルシューティング
サーバーを起動する前に MindManager が実行中であることを確認してください
macOSの場合は、Claude DesktopがMindManagerを自動化できるようにしてください。
謝辞
このプロジェクトはmindmライブラリをベースに構築されており、WindowsおよびmacOSプラットフォーム上のMindManagerへのPythonインターフェースを提供します。Anthropicが開発したModel Context Protocol (MCP) SDKを使用しています。
ライセンス
MITライセンス - 詳細はLICENSEファイルを参照
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
- AlicenseBqualityDmaintenanceA Model Context Protocol server that converts Markdown content into interactive mindmaps, allowing AI assistants to visualize hierarchical information through either HTML content or saved files.1236MIT
- -licenseNot gradedqualityNot gradedmaintenanceA server that implements the Model Context Protocol (MCP), providing an interface for LLM applications to generate mermaid.js visualizations and diagrams.
- AlicenseAqualityDmaintenanceA Model Context Protocol (MCP) server designed to easily dump your codebase context into Large Language Models (LLMs).163Apache 2.0
- AlicenseNot gradedqualityDmaintenanceA Model Context Protocol server that converts various file formats (PDF, PowerPoint, Word, Excel, Images, etc.) to Markdown to make them accessible to LLMs.1MIT
Related MCP Connectors
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
A Model Context Protocol server for Wix AI tools
MCP server for AI dialogue using various LLM models via AceDataCloud
Appeared in Searches
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/robertZaufall/mindm-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server