Miro MCP

by k-jarzyna

create-mindmap-node

Add a new mind map node to a Miro board by specifying content, position, style, and optional parent node for structured visualization.

Instructions

Create a new mind map node on a Miro board

Input Schema

NameRequiredDescriptionDefault
boardIdYesUnique identifier (ID) of the board where you want to create the node
dataYesThe content and style configuration of the mind map node
positionYesPosition of the node on the board

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "boardId": { "description": "Unique identifier (ID) of the board where you want to create the node", "type": "string" }, "data": { "additionalProperties": false, "description": "The content and style configuration of the mind map node", "properties": { "content": { "description": "Text content for the mind map node", "type": "string" }, "parentId": { "description": "ID of the parent node (if this is a child node)", "type": "string" }, "style": { "additionalProperties": false, "properties": { "fillColor": { "description": "Fill color for the node", "type": "string" }, "textColor": { "description": "Text color for the node", "type": "string" } }, "type": "object" } }, "required": [ "content" ], "type": "object" }, "position": { "additionalProperties": false, "description": "Position of the node on the board", "properties": { "x": { "description": "X coordinate of the node", "type": "number" }, "y": { "description": "Y coordinate of the node", "type": "number" } }, "required": [ "x", "y" ], "type": "object" } }, "required": [ "boardId", "data", "position" ], "type": "object" }

You must be authenticated.

Other Tools from Miro MCP

Related Tools

ID: kagg0s1404