MCP Mindmup2 Google Drive MCP Server

A Model Context Protocol (MCP) server that lets AI clients (Claude Code, Cursor) **search, read, and drill into [MindMup

Local serverstdioPython

What is the MCP Mindmup2 Google Drive MCP server?

A Model Context Protocol (MCP) server that lets AI clients (Claude Code, Cursor) search, read, and drill into MindMup 2 .mup mind maps stored in Google Drive — without dumping a 3MB JSON tree into the. Exposed over MCP by the mcp mindmup2 google drive mcp server, that capability becomes something an assistant can invoke while it works, not something you go and do afterwards.

Its toolset

Everything the assistant can do here goes through one of these:

  • Right — click the folder → Share → paste the email
  • list_files — List MindMup files from Google Drive (folders and non-.mup filtered by default). Returns id, name, folder_url, size, modified_time
  • read_mindmap — Read a MindMup file by file_id or file_name (one required; name uses first partial match). Small files (<100KB AI-dict) return content_type
  • search_mindmap — Search nodes by keyword. Params: file_id, keyword, optional node_path (subtree scope), max_results=30, normalize_whitespace=True. Returns nodes with
  • get_mindmap_section — Drill into a section by node_path (dotted integers, root is 1, e.g. "1.2.3"). Optional max_depth, offset=0, limit=0. Returns content_type: "full" \
  • Step — Description
  • Prerequisites — The Prerequisites tool exposed by this server

Configuration

  • Python 3.12+ - Docker & docker-compose (required for make run-dev-docker / make run-prod) ; Ref. makefile - Google Cloud Platform account - An MCP client that supports HTTP transport (Claude Code or Cursor)

Adding it to your client

Setup follows the usual MCP pattern — install or clone the server, register it in your client's configuration file, restart the client.

When to reach for it

Among the file and storage access options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. MCP Mindmup2 Google Drive's toolset — Right, list_files, read_mindmap and 4 more — is a fair guide to whether it matches your workflow. It is maintained by shyinlim; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against MCP Mindmup2 Google Drive's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Caveats

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the mcp mindmup2 google drive mcp server does with a few real requests.

Available tools

ToolWhat it does
Rightclick the folder → Share → paste the email
list_filesList MindMup files from Google Drive (folders and non-.mup filtered by default). Returns id, name, folder_url, size, modified_time.
read_mindmapRead a MindMup file by file_id **or** file_name (one required; name uses first partial match). Small files (<100KB AI-dict) return content_type: "full". Large files return content_type: "outline_only" with tree_outline,
search_mindmapSearch nodes by keyword. Params: file_id, keyword, optional node_path (subtree scope), max_results=30, normalize_whitespace=True. Returns nodes with node_path, title_preview, breadcrumb, children_count.
get_mindmap_sectionDrill into a section by node_path (dotted integers, root is 1, e.g. "1.2.3"). Optional max_depth, offset=0, limit=0. Returns content_type: "full" \
StepDescription
PrerequisitesThe Prerequisites tool exposed by this server.

Configuration

  • Python 3.12+ - Docker & docker-compose (required for make run-dev-docker / make run-prod) ; Ref. makefile - Google Cloud Platform account - An MCP client that supports HTTP transport (Claude Code or Cursor)

Example prompts to try

  • Use MCP Mindmup2 Google Drive to Right.
  • Use MCP Mindmup2 Google Drive to list files.
  • Use MCP Mindmup2 Google Drive to read mindmap.

Frequently asked questions

It connects MCP Mindmup2 Google Drive to MCP-compatible AI assistants such as Claude and Cursor, exposing 7 tools (Right, list_files, read_mindmap, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with MCP Mindmup2 Google Drive directly.