Miro MCP

by k-jarzyna

create-card-item

Add a new card to a Miro board by defining its title, position, dimensions, and optional details like description, assignee, and due date.

Instructions

Create a new card item on a Miro board

Input Schema

NameRequiredDescriptionDefault
boardIdYesUnique identifier (ID) of the board where the card will be created
dataYesThe content and configuration of the card
geometryNoDimensions of the card
positionYesPosition of the card on the board
styleNoStyle configuration of the card

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 card will be created", "type": "string" }, "data": { "additionalProperties": false, "description": "The content and configuration of the card", "properties": { "assigneeId": { "description": "User ID of the assignee", "type": "string" }, "description": { "description": "Description of the card", "type": "string" }, "dueDate": { "description": "Due date for the card (ISO 8601 format)", "type": "string" }, "title": { "description": "Title of the card", "type": "string" } }, "required": [ "title" ], "type": "object" }, "geometry": { "additionalProperties": false, "description": "Dimensions of the card", "properties": { "height": { "description": "Height of the card", "type": "number" }, "rotation": { "description": "Rotation angle of the card", "type": "number" }, "width": { "description": "Width of the card", "type": "number" } }, "type": "object" }, "position": { "additionalProperties": false, "description": "Position of the card on the board", "properties": { "x": { "description": "X coordinate of the card", "type": "number" }, "y": { "description": "Y coordinate of the card", "type": "number" } }, "required": [ "x", "y" ], "type": "object" }, "style": { "additionalProperties": false, "description": "Style configuration of the card", "properties": { "cardTheme": { "description": "Color of the card", "type": "string" } }, "type": "object" } }, "required": [ "boardId", "data", "position" ], "type": "object" }

You must be authenticated.

Other Tools from Miro MCP

Related Tools

ID: kagg0s1404