get-shape-item
Retrieve specific shape details from a Miro board by providing the board ID and shape ID. Integrates with the Miro MCP server for efficient data access and management.
Instructions
Retrieve information about a specific shape item on a Miro board
Input Schema
Name | Required | Description | Default |
---|---|---|---|
boardId | Yes | Unique identifier (ID) of the board that contains the shape | |
itemId | Yes | Unique identifier (ID) of the shape that you want to retrieve |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"boardId": {
"description": "Unique identifier (ID) of the board that contains the shape",
"type": "string"
},
"itemId": {
"description": "Unique identifier (ID) of the shape that you want to retrieve",
"type": "string"
}
},
"required": [
"boardId",
"itemId"
],
"type": "object"
}