Skip to main content
Glama

delete-mindmap-node

Remove a mind map node from a Miro board by specifying the board ID and node ID to clean up or reorganize visual diagrams.

Instructions

Delete a mind map node from a Miro board

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
boardIdYesUnique identifier (ID) of the board from which you want to delete the mind map node
itemIdYesUnique identifier (ID) of the mind map node that you want to delete

Implementation Reference

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

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