Skip to main content

Model Context Protocol (MCP) server for the mindm library, enabling AI assistants like Claude to interact with MindManager.

Project description

MindManager MCP Server

A Model Context Protocol (MCP) server implementation for the mindm library, providing a standardized interface to interact with MindManager on Windows and macOS.

PyPI version PyPI version

Overview

This server allows you to programmatically interact with MindManager through the Model Context Protocol (MCP), a standardized way to provide context and tools to LLMs. It leverages the mindm library to manipulate MindManager documents, topics, relationships, and other mindmap elements.

Example (Claude desktop):

MindManager MCP in Claude

Example (Codex GUI):

MindManager MCP in Codex

Other examples

Client

get the current MindManager mindmap, translate every topic to German and create a new MindManager mindmap (simple).

get the current MindManager mindmap, refine each topic 2 levels and create a new MindManager mindmap (simple).

Shell:

codex exec "get the current MindManager mindmap, add a meaningful emoji to every topic and create new MindManager mindmap (simple)"

remark: emojis only work on macOS.

Features

  • Retrieve mindmap structure and central topics
  • Export mindmaps to Mermaid, Markdown, JSON formats to be used in LLM chats
  • Create MindManager mindmaps directly from Mermaid (full or simplified syntax)
  • Fetch MindManager and package versions for quick diagnostics
  • Get information about MindManager installation and library folders
  • Get current selection from MindManager

Planned Features

  • Add, modify, and manipulate topics and subtopics without Mermaid roundtrips
  • Add relationships between topics
  • Add tags to topics
  • Set document background images

Requirements

  • Python 3.12 or higher
  • mcp package (Model Context Protocol SDK)
  • mindm library (included in this project)
  • MindManager (supported versions: 23-) installed on Windows or macOS

Installation 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

Installation Windows

# 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

Usage

MCP inspector

# run mcp with inspector
uv run --with mind --with fastmcp --with markdown-it-py mcp dev mindm_mcp/server.py

Claude Desktop

Local python file

Adjust the path for the local file as needed.

{
  "mcpServers": {
    "mindm (MindManager)": {
      "command": "uv",
      "args": [
        "run",
        "--with",
        "mindm>=0.0.5.3",
        "--with",
        "fastmcp",
        "--with",
        "markdown-it-py",
        "/Users/master/git/mindm-mcp/mindm_mcp/server.py"
      ]
    }
  }
}

Module from package repository

Adjust VIRTUAL_ENV as needed.

{
    "mcpServers": {
      "mindm (MindManager)": {
        "command": "uv",
        "args": [
          "run",
          "--with",
          "mindm>=0.0.5.3",
          "--with",
          "mindm-mcp>=0.0.2.1",
          "--with",
          "fastmcp",
          "--with",
          "markdown-it-py",
          "-m",
          "mindm_mcp.server"
        ],
        "env": {
            "VIRTUAL_ENV": "/Users/master/git/mindm-mcp/.venv"
        }
      }
  }
}

Hint: If the MCP server does not show up with the hammer icon on Windows, close Claude Desktop and kill all background processes.

Codex (VSCode Extension / CLI)

Local python file

config.toml (adjust the path for the local file as needed).

[features]
rmcp_client = true

[mcp_servers.mindmanager]
command = "uv"
args = ["run", "--with", "mindm>=0.0.5.3", "--with", "fastmcp", "--with", "markdown-it-py", "/Users/master/git/mindm-mcp/mindm_mcp/server.py"]

Module from package repository

config.toml

[features]
rmcp_client = true

[mcp_servers.mindmanager]
command = "uv"
args = ["run", "--with", "mindm>=0.0.5.3", "--with", "fastmcp", "--with", "markdown-it-py", "--with", "mindm-mcp>=0.0.2.1", "-m", "mindm_mcp.server"]

VSCode Chat (GitHub Copilot)

Local python file:

Adjust the path for the local file as needed.

uv run --with mindm>=0.0.5.3 --with fastmcp --with markdown-it-py /Users/master/git/mindm-mcp/mindm_mcp/server.py

or server definition in mcp.json:

		"Mindmanager": {
			"type": "stdio",
			"command": "uv",
			"args": [
				"run",
				"--with",
				"mindm>=0.0.5.3",
				"--with",
				"fastmcp",
				"--with",
				"markdown-it-py",
				"/Users/master/git/mindm-mcp/mindm_mcp/server.py"
			]
		}

Module from package repository

uv run --with mindm>=0.0.5.3 --with fastmcp --with markdown-it-py --with mindm-mcp>=0.0.2.1 -m mindm_mcp.server

or server definition in mcp.json:

		"Mindmanager": {
			"type": "stdio",
			"command": "uv",
			"args": [
				"run",
				"--with",
				"mindm>=0.0.5.3",
				"--with",
				"fastmcp",
				"--with",
				"markdown-it-py",
				"--with",
				"mindm-mcp>=0.0.2.1",
				"-m",
				"mindm_mcp.server"
			]
		}

MCP Tools

The server exposes the following tools through the Model Context Protocol:

Document Interaction

  • get_mindmap: Retrieves the current mindmap structure from MindManager
  • get_selection: Retrieves the currently selected topics in MindManager
  • get_library_folder: Gets the path to the MindManager library folder
  • get_mindmanager_version: Gets the installed MindManager version
  • get_grounding_information: Extracts grounding information (central topic, selected subtopics) from the mindmap

Serialization

  • serialize_current_mindmap_to_mermaid: Serializes the currently loaded mindmap to Mermaid format
  • serialize_current_mindmap_to_markdown: Serializes the currently loaded mindmap to Markdown format
  • serialize_current_mindmap_to_json: Serializes the currently loaded mindmap to a detailed JSON object with ID mapping

Creation

  • create_mindmap_from_mermaid: Build a MindManager map from Mermaid (full syntax with IDs and metadata)
  • create_mindmap_from_mermaid_simple: Build a MindManager map from simplified Mermaid text

Versioning

  • get_versions: Returns the mindm-mcp and mindm package versions for debugging

Platform Support

  • Windows: Full support for topics, notes, icons, images, tags, links, relationships, and RTF formatting
  • macOS: Support for topics, notes, and relationships (limited support compared to Windows)

Integration with Claude and other LLMs

This MCP server can be installed in Claude Desktop or other MCP-compatible applications, allowing LLMs to:

  1. Access mindmap content
  2. Manipulate mindmaps (coming)
  3. Create new mindmaps based on LLM-generated content (coming)

Troubleshooting

  • Ensure MindManager is running before starting the server
  • For macOS, make sure you allow Claude Desktop to automate MindManager

MCPHub

Certified on MCPHub

Acknowledgements

This project is built upon the mindm library, providing Python interfaces to MindManager on Windows and macOS platforms. It uses the Model Context Protocol (MCP) SDK developed by Anthropic.

License

MIT License - See LICENSE file for details

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mindm_mcp-0.0.2.2.tar.gz (10.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

mindm_mcp-0.0.2.2-py3-none-any.whl (9.0 kB view details)

Uploaded Python 3

File details

Details for the file mindm_mcp-0.0.2.2.tar.gz.

File metadata

  • Download URL: mindm_mcp-0.0.2.2.tar.gz
  • Upload date:
  • Size: 10.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.2.0 CPython/3.12.10

File hashes

Hashes for mindm_mcp-0.0.2.2.tar.gz
Algorithm Hash digest
SHA256 028875e35fa3ec420da085a8863c5dfea7af55462d4543ca57e1824f59f3d448
MD5 ff1f20a29873f79c89485ccd33a1ca86
BLAKE2b-256 3f96737e36fcd56fee7f4669e821274554d572058425e06b3e9e56f9c0699141

See more details on using hashes here.

File details

Details for the file mindm_mcp-0.0.2.2-py3-none-any.whl.

File metadata

  • Download URL: mindm_mcp-0.0.2.2-py3-none-any.whl
  • Upload date:
  • Size: 9.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.2.0 CPython/3.12.10

File hashes

Hashes for mindm_mcp-0.0.2.2-py3-none-any.whl
Algorithm Hash digest
SHA256 518e4416573ef31ba2147bb3edd6bdda66ffe2416aa87c647168edd1c1820954
MD5 6861b97f983a0253da784ab46acb17e6
BLAKE2b-256 febd486f2f293101592afaa7644a325c7d9bf7d2304e557dd6ae879063f50ea2

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page