create-mindmap-node
Add a new mind map node to a Miro board by specifying content, position, and optional styling like colors or parent-child relationships.
Instructions
Create a new mind map node on a Miro board
Input Schema
Name | Required | Description | Default |
---|---|---|---|
boardId | Yes | Unique identifier (ID) of the board where you want to create the node | |
data | Yes | The content and style configuration of the mind map node | |
position | Yes | Position 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"
}