Skip to main content
Glama

MindManager MCP Server

MindManager MCP サーバー

mindmライブラリ用のモデル コンテキスト プロトコル (MCP) サーバー実装。Windows および macOS 上の MindManager と対話するための標準化されたインターフェイスを提供します。

概要

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

例:

クロードのMindManager MCP

特徴

  • マインドマップの構造と中心トピックを取得する
  • マインドマップを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 は次のことが可能になります。

  1. マインドマップのコンテンツにアクセスする
  2. マインドマップを操作する(近日公開)
  3. LLM で生成されたコンテンツに基づいて新しいマインドマップを作成する (近日公開予定)

トラブルシューティング

  • サーバーを起動する前に MindManager が実行中であることを確認してください
  • macOSの場合は、Claude DesktopがMindManagerを自動化できるようにしてください。

謝辞

このプロジェクトはmindmライブラリをベースに構築されており、WindowsおよびmacOSプラットフォーム上のMindManagerへのPythonインターフェースを提供します。Anthropicが開発したModel Context Protocol (MCP) SDKを使用しています。

ライセンス

MITライセンス - 詳細はLICENSEファイルを参照

You must be authenticated.

A
security – no known vulnerabilities
A
license - permissive license
A
quality - confirmed to work

local-only server

The server can only run on the client's local machine because it depends on local resources.

LLM が MindManager マインド マップと対話できるようにし、マインド マップ構造を取得して、Mermaid、Markdown、JSON などの形式にエクスポートできるようにするモデル コンテキスト プロトコル サーバー。

  1. 概要
    1. 特徴
      1. 計画されている機能
        1. 要件
          1. macOSへのインストール
            1. インストールウィンドウ
              1. 使用法
                1. MCP検査官
                2. クロードデスクトップ
              2. MCPツール
                1. ドキュメントインタラクション
                2. シリアル化
              3. プラットフォームサポート
                1. クロードや他のLLMとの統合
                  1. トラブルシューティング
                    1. 謝辞
                      1. ライセンス

                        Related MCP Servers

                        • A
                          security
                          A
                          license
                          A
                          quality
                          A Model Context Protocol server that enables LLMs to interact with Salesforce data through SOQL queries, SOSL searches, and various API operations including record management.
                          Last updated -
                          10
                          77
                          Python
                          MIT License
                        • A
                          security
                          A
                          license
                          A
                          quality
                          A Model Context Protocol server that gives LLMs the ability to interact with Ethereum networks, manage wallets, query blockchain data, and execute smart contract operations through a standardized interface.
                          Last updated -
                          31
                          323
                          2
                          TypeScript
                          MIT License
                        • -
                          security
                          F
                          license
                          -
                          quality
                          A Model Context Protocol server that allows intelligent analysis and querying of XMind mind maps, providing capabilities for searching, extracting, and analyzing content across XMind files.
                          Last updated -
                          24
                          14
                          JavaScript
                        • A
                          security
                          A
                          license
                          A
                          quality
                          A 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.
                          Last updated -
                          1
                          104
                          Python
                          MIT License
                          • Apple

                        View all related MCP servers

                        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