MindMeister MCP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| MINDMEISTER_API_TOKEN | Yes | Your MindMeister Personal Access Token |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| mindmeister_get_userA | Get the authenticated MindMeister user profile. Returns the current user's id, name, email, and account details from GET /users/me. Returns: str: JSON with user profile fields (id, name, email, etc.) |
| mindmeister_get_mapA | Get metadata for a specific MindMeister map. Retrieves the full JSON representation of a map including its title, nodes, connections, and settings via GET /maps/{id}. Args: params: GetMapInput with map_id (str). Returns: str: JSON with the map's complete metadata. |
| mindmeister_list_mapsA | List mind maps belonging to the authenticated user. Supports pagination via limit/offset. The MindMeister API v2 may not expose a dedicated list-all endpoint; this tool attempts GET /maps and returns whatever the API provides. If the endpoint is not available, an appropriate error is returned. Args: params: ListMapsInput with optional limit (int, 1-50) and offset (int, >=0). Returns: str: JSON array of map objects with pagination metadata, or an error message if the endpoint is unavailable. |
| mindmeister_export_mapA | Export a MindMeister map to a specific file format. Supported formats: pdf, docx, pptx, rtf, image, presentation. The export is fetched via GET /maps/{id} with an appropriate Accept header. Returns the binary content as a base64 string so it can be saved locally. Args: params: ExportMapInput with map_id (str) and format (ExportFormat). Returns: str: JSON with keys "format", "filename", "content_base64", and "size_bytes". The base64 payload can be decoded and saved as a file. |
| mindmeister_get_map_imageA | Get the image/thumbnail for a MindMeister map. Retrieves the map image via GET /map_images/{id}. Returns the image as base64-encoded data along with metadata. Args: params: GetMapImageInput with map_id (str). Returns: str: JSON with "map_id", "content_type", "content_base64", and "size_bytes". |
| mindmeister_list_rightsA | List sharing permissions for a MindMeister map. Returns all collaborators and their access levels for the given map via GET /maps/{id}/rights. Args: params: ListRightsInput with map_id (str). Returns: str: JSON array of permission objects (user, role, etc.) |
| mindmeister_get_preferencesA | Get the authenticated user's MindMeister preferences. Retrieves settings and preferences via GET /users/me/preferences (or equivalent endpoint). Returns: str: JSON with user preference key-value pairs. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 7 tools
Each tool targets a distinct aspect of MindMeister: maps, user, preferences, image, export, rights. No overlap in purpose, agents can clearly differentiate.
All tools follow the mindmeister_verb_noun pattern, using snake_case consistently. The naming is uniform and predictable.
Seven tools is a well-scoped set for a mind map service, covering listing, retrieving, exporting, user info, and permissions without unnecessary bloat.
The server lacks create, update, and delete operations for maps, which are essential for full lifecycle management. The tool surface is read-only plus export, leaving agents unable to perform core editing tasks.