mcp-miro

bulk_create_items

Create multiple items on a Miro board in a single transaction (max 20 items)

Input Schema

NameRequiredDescriptionDefault
boardIdYesID of the board to create the items on
itemsYesArray of items to create

Input Schema (JSON Schema)

{ "properties": { "boardId": { "description": "ID of the board to create the items on", "type": "string" }, "items": { "description": "Array of items to create", "items": { "properties": { "data": { "description": "Item-specific data configuration", "type": "object" }, "geometry": { "description": "Item geometry configuration", "type": "object" }, "parent": { "description": "Parent item configuration", "type": "object" }, "position": { "description": "Item position configuration", "type": "object" }, "style": { "description": "Item-specific style configuration", "type": "object" }, "type": { "description": "Type of item to create", "enum": [ "app_card", "text", "shape", "sticky_note", "image", "document", "card", "frame", "embed" ], "type": "string" } }, "required": [ "type" ], "type": "object" }, "maxItems": 20, "minItems": 1, "type": "array" } }, "required": [ "boardId", "items" ], "type": "object" }