Miro MCP

by k-jarzyna

create-sticky-note-item

Add a sticky note to a Miro board by specifying its content, position, dimensions, shape, and style. Input requires board ID, note text, coordinates, and optional design parameters.

Instructions

Create a new sticky note item on a Miro board

Input Schema

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

You must be authenticated.

Other Tools from Miro MCP

Related Tools

ID: kagg0s1404