Skip to main content
Glama

get-mindmap-node

Retrieve specific mind map node details from a Miro board using board and item identifiers to access structured information.

Instructions

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

Input Schema

TableJSON 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

Implementation Reference

  • The handler function for the 'get-mindmap-node' tool. It takes boardId and itemId, calls MiroClient.getApi().getMindmapNodeExperimental to retrieve the mindmap node data, formats it as JSON, and returns it via ServerResponse.text, or handles errors appropriately.
    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); } }
  • Zod schema defining the input parameters: boardId (string) and itemId (string) for the get-mindmap-node tool.
    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 instance in the main server setup.
    .register(getMindmapNodeTool)
Install Server

Other 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