create-embed-item
Add an embed item to a Miro board by specifying the URL, position, dimensions, and mode. Use this tool to integrate external content directly onto the canvas for collaborative workflows.
Instructions
Create a new embed item on a Miro board
Input Schema
Name | Required | Description | Default |
---|---|---|---|
boardId | Yes | Unique identifier (ID) of the board where the embed will be created | |
data | Yes | The content and configuration of the embed | |
geometry | Yes | Dimensions of the embed | |
position | Yes | Position of the embed on the board |
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 embed will be created",
"type": "string"
},
"data": {
"additionalProperties": false,
"description": "The content and configuration of the embed",
"properties": {
"mode": {
"description": "Mode of the embed (normal, inline, etc.)",
"type": "string"
},
"url": {
"description": "URL to be embedded on the board",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
},
"geometry": {
"additionalProperties": false,
"description": "Dimensions of the embed",
"properties": {
"height": {
"description": "Height of the embed",
"type": "number"
},
"width": {
"description": "Width of the embed",
"type": "number"
}
},
"type": "object"
},
"position": {
"additionalProperties": false,
"description": "Position of the embed on the board",
"properties": {
"origin": {
"description": "Origin of the embed (center, top-left, etc.)",
"type": "string"
},
"relativeTo": {
"description": "Reference point (canvas_center, etc.)",
"type": "string"
},
"x": {
"description": "X coordinate of the embed",
"type": "number"
},
"y": {
"description": "Y coordinate of the embed",
"type": "number"
}
},
"required": [
"x",
"y"
],
"type": "object"
}
},
"required": [
"boardId",
"data",
"position",
"geometry"
],
"type": "object"
}