mcp-miro
by evalstate
create_sticky_note
Create a sticky note on a Miro board. By default, sticky notes are 199x228 and available in these colors: gray, light_yellow, yellow, orange, light_green, green, dark_green, cyan, light_pink, pink, violet, red, light_blue, blue, dark_blue, black.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
boardId | Yes | ID of the board to create the sticky note on | |
color | No | Color of the sticky note (e.g. 'yellow', 'blue', 'pink') | yellow |
content | Yes | Text content of the sticky note | |
x | No | X coordinate position | |
y | No | Y coordinate position |
Input Schema (JSON Schema)
{
"properties": {
"boardId": {
"description": "ID of the board to create the sticky note on",
"type": "string"
},
"color": {
"default": "yellow",
"description": "Color of the sticky note (e.g. 'yellow', 'blue', 'pink')",
"enum": [
"gray",
"light_yellow",
"yellow",
"orange",
"light_green",
"green",
"dark_green",
"cyan",
"light_pink",
"pink",
"violet",
"red",
"light_blue",
"blue",
"dark_blue",
"black"
],
"type": "string"
},
"content": {
"description": "Text content of the sticky note",
"type": "string"
},
"x": {
"default": 0,
"description": "X coordinate position",
"type": "number"
},
"y": {
"default": 0,
"description": "Y coordinate position",
"type": "number"
}
},
"required": [
"boardId",
"content"
],
"type": "object"
}