Miro MCP

by k-jarzyna

create-image-item-using-file

Add an image to a Miro board by uploading a file or using base64 data, specifying the board ID, position coordinates, and optional title for precise placement and organization.

Instructions

Create a new image item on a Miro board using file from device or from chat

Input Schema

NameRequiredDescriptionDefault
boardIdYesUnique identifier (ID) of the board where the image will be created
imageDataYesBase64 encoded image data from the chat
positionYesPosition of the image on the board
titleNoTitle of the image

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 image will be created", "type": "string" }, "imageData": { "description": "Base64 encoded image data from the chat", "type": "string" }, "position": { "additionalProperties": false, "description": "Position of the image on the board", "properties": { "origin": { "description": "Origin of the image (center, top-left, etc.)", "type": "string" }, "relativeTo": { "description": "Reference point (canvas_center, etc.)", "type": "string" }, "x": { "description": "X coordinate of the image", "type": "number" }, "y": { "description": "Y coordinate of the image", "type": "number" } }, "required": [ "x", "y" ], "type": "object" }, "title": { "description": "Title of the image", "type": "string" } }, "required": [ "boardId", "imageData", "position" ], "type": "object" }

You must be authenticated.

Other Tools from Miro MCP

Related Tools

ID: kagg0s1404