create-sticky-note-item
Add a sticky note to a Miro board by specifying content, position, shape, size, and style. Ideal for organizing ideas or tasks visually with customizable layout and design options.
Instructions
Create a new sticky note item on a Miro board
Input Schema
Name | Required | Description | Default |
---|---|---|---|
boardId | Yes | Unique identifier (ID) of the board where the sticky note will be created | |
data | Yes | The content and configuration of the sticky note | |
geometry | No | Dimensions of the sticky note | |
position | Yes | Position of the sticky note on the board | |
style | No | Style configuration of the sticky note |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"boardId": {
"description": "Unique identifier (ID) of the board where the sticky note will be created",
"type": "string"
},
"data": {
"additionalProperties": false,
"description": "The content and configuration of the sticky note",
"properties": {
"content": {
"description": "Text content of the sticky note",
"type": "string"
},
"shape": {
"description": "Shape of the sticky note (square, rectangle, circle, triangle, rhombus)",
"type": "string"
}
},
"required": [
"content"
],
"type": "object"
},
"geometry": {
"additionalProperties": false,
"description": "Dimensions of the sticky note",
"properties": {
"height": {
"description": "Height of the sticky note",
"type": "number"
},
"width": {
"description": "Width of the sticky note",
"type": "number"
}
},
"type": "object"
},
"position": {
"additionalProperties": false,
"description": "Position of the sticky note on the board",
"properties": {
"origin": {
"description": "Origin of the sticky note (center, top-left, etc.)",
"type": "string"
},
"relativeTo": {
"description": "Reference point (canvas_center, etc.)",
"type": "string"
},
"x": {
"description": "X coordinate of the sticky note",
"type": "number"
},
"y": {
"description": "Y coordinate of the sticky note",
"type": "number"
}
},
"required": [
"x",
"y"
],
"type": "object"
},
"style": {
"additionalProperties": false,
"description": "Style configuration of the sticky note",
"properties": {
"fillColor": {
"description": "Fill color of the sticky note (use predefined values like 'light_yellow', 'light_green', etc.)",
"type": "string"
},
"textAlign": {
"description": "Alignment of the text (left, center, right)",
"type": "string"
}
},
"type": "object"
}
},
"required": [
"boardId",
"data",
"position"
],
"type": "object"
}