Skip to main content
Glama

get-mindmap-node

Retrieve details of a specific mind map node from a Miro board by providing the board ID and node ID. Integrates with the Miro MCP server to access mind map data efficiently.

Instructions

Retrieve information about a specific mind map node on a Miro board

Input Schema

NameRequiredDescriptionDefault
boardIdYesUnique identifier (ID) of the board from which you want to retrieve a mind map node
itemIdYesUnique identifier (ID) of the mind map node that you want to retrieve

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "boardId": { "description": "Unique identifier (ID) of the board from which you want to retrieve a mind map node", "type": "string" }, "itemId": { "description": "Unique identifier (ID) of the mind map node that you want to retrieve", "type": "string" } }, "required": [ "boardId", "itemId" ], "type": "object" }

Implementation Reference

  • The handler function that executes the tool logic: calls the Miro API to retrieve a specific mind map node and returns the formatted response or handles errors.
    fn: async ({ boardId, itemId }) => { try { const response = await MiroClient.getApi().getMindmapNodeExperimental(boardId, itemId); return ServerResponse.text(JSON.stringify(response.body, null, 2)); } catch (error) { process.stderr.write(`Error retrieving Miro mind map node: ${error}\n`); return ServerResponse.error(error); } }
  • Input schema using Zod for validating boardId and itemId parameters.
    args: { boardId: z.string().describe("Unique identifier (ID) of the board from which you want to retrieve a mind map node"), itemId: z.string().describe("Unique identifier (ID) of the mind map node that you want to retrieve") },
  • src/index.ts:187-187 (registration)
    Registers the getMindmapNodeTool with the ToolBootstrapper.
    .register(getMindmapNodeTool)

Other Tools

Related Tools

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/k-jarzyna/mcp-miro'

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