create-card-item
Add a new card to a Miro board with customizable title, description, assignee, due date, position, dimensions, and style using the MCP server.
Instructions
Create a new card item on a Miro board
Input Schema
Name | Required | Description | Default |
---|---|---|---|
boardId | Yes | Unique identifier (ID) of the board where the card will be created | |
data | Yes | The content and configuration of the card | |
geometry | No | Dimensions of the card | |
position | Yes | Position of the card on the board | |
style | No | Style 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"
}