get-app-card-item
Retrieve detailed information about a specific app card on a Miro board by providing the board ID and item ID. Access data efficiently within the Miro MCP server environment.
Instructions
Retrieve information about a specific app card item on a Miro board
Input Schema
Name | Required | Description | Default |
---|---|---|---|
boardId | Yes | Unique identifier (ID) of the board that contains the app card | |
itemId | Yes | Unique identifier (ID) of the app card 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 app card",
"type": "string"
},
"itemId": {
"description": "Unique identifier (ID) of the app card that you want to retrieve",
"type": "string"
}
},
"required": [
"boardId",
"itemId"
],
"type": "object"
}