mind-elixir-mcp
OfficialClick on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@mind-elixir-mcpCreate a mind map from the meeting notes and add action items"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Mind Elixir MCP Server
Let AI assistants build and edit real mind maps in Mind Elixir Desktop.
This is the stdio ↔ HTTP bridge that connects stdio-only MCP clients — Claude Desktop, Claude Code, Cursor, VS Code, Cline, Roo Code, Windsurf — to the MCP server built into the Mind Elixir Desktop app.
Requires Mind Elixir Desktop to be installed and running. This server is a local controller for the desktop app, not a standalone cloud service. The bridge forwards tool calls to
http://127.0.0.1:6595/mcpand streams the results back.
Registry name:
io.github.mind-elixir/mcpnpm package:
@mind-elixir/mcpSetup guide: https://app.mind-elixir.com/blog/use-mcp
Contents
Related MCP server: mcacp
What you can do with it
Seven tools let an assistant read and mutate the mind map that is currently open in the app:
Start a fresh map, or replace the current one with a structure the model designed.
Inspect every topic, node ID, and parent/child relationship in the current map.
Rename nodes, add child nodes, and get back the ID of what was just created.
Attach summary nodes that collapse a range of siblings into one idea.
Draw labelled arrows between any two nodes to express relationships that the tree cannot.
Typical uses: turning a conversation or a document into a structured map, breaking a project down into a work breakdown structure, summarising a meeting into themes, or having an assistant reorganise notes you already made by hand.
Requirements
Requirement | Detail |
Mind Elixir Desktop | Installed and running. The app hosts the actual MCP server on |
Node.js | 18 or newer — only needed to run the bridge via |
MCP client | Any client that speaks MCP over stdio, or one that can connect directly to a Streamable HTTP endpoint. |
Port |
|
Quick start
Start Mind Elixir Desktop first, then verify the bridge can reach it:
npx -y @mind-elixir/mcp@latestA running bridge prints nothing to stdout (that channel is reserved for JSON-RPC) and stays in the foreground. Diagnostics go to stderr. Quit it with Ctrl+C.
To install the CLI globally instead:
npm install -g @mind-elixir/mcp
mind-elixir-mcpThen configure your MCP client — see the next section.
Client configuration
Claude Desktop
Edit claude_desktop_config.json:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"mind-elixir": {
"command": "npx",
"args": ["-y", "@mind-elixir/mcp@latest"]
}
}
}Restart Claude Desktop after saving.
Claude Code
claude mcp add mind-elixir -- npx -y @mind-elixir/mcp@latestCursor
Create or edit ~/.cursor/mcp.json (or use Settings → Features → MCP → + Add New MCP Server):
{
"mcpServers": {
"mind-elixir": {
"command": "npx",
"args": ["-y", "@mind-elixir/mcp@latest"]
}
}
}VS Code (GitHub Copilot agent mode)
Add to .vscode/mcp.json in your workspace, or to your user-level mcp.json:
{
"servers": {
"mind-elixir": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@mind-elixir/mcp@latest"]
}
}
}Cline, Roo Code, Windsurf
These extensions share the mcpServers shape used by Cursor:
{
"mcpServers": {
"mind-elixir": {
"command": "npx",
"args": ["-y", "@mind-elixir/mcp@latest"]
}
}
}Non-default port
If Mind Elixir Desktop is listening somewhere other than 6595, pass the port through:
{
"mcpServers": {
"mind-elixir": {
"command": "npx",
"args": ["-y", "@mind-elixir/mcp@latest", "--port", "7000"]
}
}
}Connecting without the bridge (HTTP)
If your client can talk Streamable HTTP directly, skip this package entirely and point it at the app:
{
"mcpServers": {
"mind-elixir": {
"type": "http",
"url": "http://127.0.0.1:6595/mcp"
}
}
}The app exposes:
Endpoint | Method | Purpose |
|
| MCP Streamable HTTP endpoint (the one you want). |
|
| Liveness probe; returns |
CORS is enabled for the Mind Elixir Cloud origin, so browser-hosted clients can call the local server too.
Tools reference
All tools return a plain-text result. Successful mutations answer with OK (or, for add_child, the new node's ID); failures come back as a string beginning with Error:.
Tool | Purpose | Returns |
Create a blank map and switch the app to the editor |
| |
Read the whole current map | Node tree JSON | |
Replace the current map from structured data |
| |
Rename a node |
| |
Add a child node |
| |
Summarise a range of siblings |
| |
Connect two nodes with a labelled arrow |
|
Every tool has a 15-second operation budget. If the app does not report back in time, the tool returns Timeout waiting for mindmap operation to complete.
new_mindmap
Creates a new, empty mind map and navigates the app to its editor page.
No parameters.
get_all_nodes
Returns the current map as a nested node tree — every topic, its ID, and its children.
No parameters. Shape of the response:
{
"topic": "Root Topic",
"id": "1",
"children": [
{ "topic": "Child Topic", "id": "b3f1c0e2-…", "children": [] }
]
}Always call this before editing or adding to a map you did not create in this session — IDs are the only way to address nodes.
generate_mindmap
Replaces the entire current map with the structure you supply.
Parameter | Type | Description |
| string | A JSON string with a |
{
"nodeData": {
"topic": "Root Topic",
"id": "1",
"children": [
{ "topic": "Child Topic 1", "id": "1-1", "children": [] },
{ "topic": "Child Topic 2", "id": "1-2" }
]
}
}Requirements:
Every node needs
topic(string) andid(string).childrenis optional.Use hierarchical numbering (
1,1-1,1-2,2,2-1, …) so later tools can address nodes predictably.
edit_topic
Changes a node's text in place, preserving its position, children, summaries, and arrows.
Parameter | Type | Description |
| string | ID of the node to rename, e.g. |
| string | The new topic text. |
Returns Error: Node not found if node_id does not exist — call get_all_nodes to refresh your view.
add_child
Adds a child node under an existing parent. The app generates the ID, so the result carries it.
Parameter | Type | Description |
| string | ID of the parent node. |
| string | Topic text for the new child. |
Returns Done. New Node's ID is <id>. — keep that ID if you plan to edit the node later. Returns Error: Parent node not found when the parent is missing.
add_node_summary
Attaches a summary node that consolidates a contiguous range of a parent's children.
Parameter | Type | Description |
| string | The summary text. |
| string | ID of the parent whose children are being summarised. |
| integer | Zero-based index of the first child to include. |
| integer | Zero-based index of the last child to include (inclusive). |
Example — summarise the first three children of node 1:
{ "text": "These three all concern onboarding", "parent": "1", "start": 0, "end": 2 }add_arrow
Draws a labelled connection between two nodes, for relationships the tree cannot express.
Parameter | Type | Description |
| string | Text shown on or near the arrow, e.g. |
| string | ID of the source node. |
| string | ID of the target node. |
| boolean |
|
Recommended agent workflow
Orient first. Call
get_all_nodesto learn the real IDs and structure before touching anything. Never assume an ID.Decide between build and patch. For a brand-new map use
generate_mindmapwith hierarchical IDs. For incremental work on an existing map useadd_childandedit_topic.Capture generated IDs.
add_childreturns a UUID — record it if the node will be edited again.Do not rely on the app being on the editor page. Any tool call brings the app to the front and opens the editor; if it was not already editing a map, a new blank map is created first. So always confirm the current state with
get_all_nodesbefore a write.Keep calls sequential. Mutations are applied in order, and there is no undo exposed over MCP.
CLI reference
USAGE:
npx -y @mind-elixir/mcp [options]
OPTIONS:
-u, --url <url> Target Mind Elixir MCP URL (default: http://127.0.0.1:6595/mcp)
-p, --port <port> Change target port (default: 6595)
-t, --transport <sse|http> Force transport mode ('sse' or 'http', default: auto)
-v, --version Show version
-h, --help Show this help message
ENVIRONMENT VARIABLES:
MIND_ELIXIR_MCP_URL Target URL to connect toThe package installs two equivalent binaries: mind-elixir-mcp and mcp.
Transport selection in auto mode: if the target URL path ends with /mcp, Streamable HTTP is used; otherwise the bridge falls back to the legacy SSE transport. Force one with --transport.
How it works
+--------------------------+
| Claude Desktop / Cursor |
+------------+-------------+
| stdio (stdin / stdout), JSON-RPC
v
+------------+-------------+
| @mind-elixir/mcp | bridge process
+------------+-------------+
| Streamable HTTP -> http://127.0.0.1:6595/mcp
v
+------------+-------------+
| Mind Elixir Desktop | Tauri app, owns the tools
+--------------------------+The bridge translates stdio JSON-RPC messages into HTTP requests and streams responses back verbatim.
Startup is tolerant. If the app is still booting, messages are buffered and replayed in strict FIFO order once the connection is established. The bridge retries the connection three times, one second apart.
Protocol version is negotiated. The bridge starts at
2024-11-05and adopts whatever version theinitializehandshake settles on, forwarding it to the app.Failures are explicit. If the app never becomes reachable, every buffered request receives a JSON-RPC error (
-32000) readingMind Elixir Desktop is not running. Please open Mind Elixir Desktop and try again. (<url>),stderrgets a human-readable explanation, and the process exits with code1. Errors raised during an operation are returned to the caller as their original message rather than being swallowed.
Troubleshooting
Symptom | Cause and fix |
| Launch the desktop app, then reconnect the MCP server in your client. |
Tool call returns | The app did not respond within 15 s — usually a modal dialog or a busy window. Bring the app to the front and retry. |
Connection refused on | The port is taken by another process, or the app is on a different port. Restart the app, or pass |
The client lists no tools | Confirm the bridge starts by running |
A blank map appeared unexpectedly | The app was not on an editor page when a tool ran, so it created one. Read the map with |
| The ID is stale or comes from a different map. Re-read with |
Nothing appears in the client's log | All bridge diagnostics go to |
Security and privacy
The app's MCP server binds
127.0.0.1only — it is never exposed to your network, and it has no authentication. Any local process on your machine can drive the app through it, so treat port6595like any other local control surface.The bridge is a local child process of your MCP client. It reads and writes nothing on disk; the only network traffic is the loopback HTTP call to the app.
Everything happens on your machine. No mind map content, prompt, or telemetry is sent to a server by this package or by the desktop app's MCP endpoint.
Grant the server the same care you would give any tool that edits your documents: it can rewrite the map you have open. Prefer clients configured to ask before running tools when you are working on something important.
Development
Requires Node.js 18+ and pnpm 11+ (the allowBuilds entry in pnpm-workspace.yaml depends on it).
pnpm install
pnpm build # tsup -> dist/index.js
pnpm dev # tsup --watchThe build emits a single bundled ESM file with a #!/usr/bin/env node shebang; prepublishOnly rebuilds before every npm publish.
License
MIT © Mind Elixir
This server cannot be deployed
Maintenance
Related MCP Connectors
- QuallaaOAuthcom.quallaa
Talk to your public-facing AI from any MCP client — Claude, ChatGPT, Cursor, Cline, Windsurf.
Turn outlines and hierarchical notes into interactive mind maps through a hosted remote MCP server.
Create, edit, restructure, import and export Atlas Red mind maps from any MCP client. Free.
Nifty's MCP server — exposes tasks, projects, messages, and files as tools for AI agents.
Related MCP Servers
- AlicenseAqualityDmaintenanceBridges MCP-compatible IDEs to a local MemOS instance, enabling notes from editors to be stored in the same knowledge base that AI agents read from.31MIT
- AlicenseAqualityDmaintenanceBridges any MCP client (like Claude Code, Zed, VS Code) to any ACP coding agent, enabling multi-agent orchestration from a single chat interface.24140 npm9Apache 2.0

GenieOS MCP Serverofficial
AlicenseAqualityCmaintenanceStdio bridge for editors to connect to the GenieOS MCP server, enabling AI agents to interact with GenieOS via Streamable HTTP transport.645 npmMIT- AlicenseAqualityBmaintenanceMCP server for parsing, searching, and extracting branches from XMind mind map files, supporting Markdown/JSON output, token-aware formatting, and Claude Desktop integration.33 npmMIT