Miro MCP

by k-jarzyna

create-text-item

Add a text item to a Miro board by specifying content, position, dimensions, and style. Input includes board ID, text content, coordinates, width, and optional styling attributes.

Instructions

Create a new text item on a Miro board

Input Schema

NameRequiredDescriptionDefault
boardIdYesUnique identifier (ID) of the board where the text will be created
dataYesThe content of the text item
geometryNoDimensions of the text item
positionYesPosition of the text item on the board
styleNoStyle 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" }

You must be authenticated.

Other Tools from Miro MCP

Related Tools

ID: kagg0s1404