miro_update_image_from_file
Replace an existing image on a Miro board with a new local file while optionally updating its title, position, or parent frame.
Instructions
Replace the file on an existing image item with a new local image file.
USE WHEN: User says "replace this image", "swap the screenshot", "update the image file". Use this to change the file on an existing image item without creating a new one. For updating metadata only (title, position), use miro_update_image instead.
PARAMETERS:
board_id: Required
item_id: Required. The existing image item to update.
file_path: Absolute path to the new image file (required). Supports: png, jpg, jpeg, gif, webp, svg.
title: New image title/alt text
x, y: New position
parent_id: Frame ID to move image into
NOTE: The item must already exist as an image. The file must exist on the local filesystem.
RELATED: To create a new image from file, use miro_upload_image. To update metadata only, use miro_update_image.
VOICE-FRIENDLY: "Replaced image file on item"
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| board_id | Yes | Board ID | |
| item_id | Yes | Image item ID to update | |
| file_path | Yes | Absolute path to the new image file on disk | |
| title | No | New image title/alt text | |
| x | No | New X position | |
| y | No | New Y position | |
| parent_id | No | Frame ID to move image into |