Skip to main content
Glama
conexaoarteiro

MindMeister MCP Server

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
MINDMEISTER_API_TOKENYesYour MindMeister Personal Access Token

Capabilities

Features and capabilities supported by this server

CapabilityDetails
tools
{
  "listChanged": false
}
prompts
{
  "listChanged": false
}
resources
{
  "subscribe": false,
  "listChanged": false
}
experimental
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
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

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

Latest Blog Posts

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/conexaoarteiro/mindmeister-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server