create-text-item
Add a text item to a Miro board by specifying content, position, dimensions, and style. Use this tool to dynamically create and customize text elements on your Miro workspace.
Instructions
Create a new text item on a Miro board
Input Schema
Name | Required | Description | Default |
---|---|---|---|
boardId | Yes | Unique identifier (ID) of the board where the text will be created | |
data | Yes | The content of the text item | |
geometry | No | Dimensions of the text item | |
position | Yes | Position of the text item on the board | |
style | No | Style configuration of the text item |
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 text will be created",
"type": "string"
},
"data": {
"additionalProperties": false,
"description": "The content of the text item",
"properties": {
"content": {
"description": "Text content of the text item",
"type": "string"
}
},
"required": [
"content"
],
"type": "object"
},
"geometry": {
"additionalProperties": false,
"description": "Dimensions of the text item",
"properties": {
"width": {
"description": "Width of the text item",
"type": "number"
}
},
"type": "object"
},
"position": {
"additionalProperties": false,
"description": "Position of the text item on the board",
"properties": {
"x": {
"description": "X coordinate of the text item",
"type": "number"
},
"y": {
"description": "Y coordinate of the text item",
"type": "number"
}
},
"required": [
"x",
"y"
],
"type": "object"
},
"style": {
"additionalProperties": false,
"description": "Style configuration of the text item",
"properties": {
"color": {
"description": "Color of the text",
"type": "string"
},
"fontSize": {
"description": "Font size of the text",
"type": "number"
},
"textAlign": {
"description": "Alignment of the text (left, center, right)",
"type": "string"
}
},
"type": "object"
}
},
"required": [
"boardId",
"data",
"position"
],
"type": "object"
}