get-specific-board
Retrieve detailed information about a specific Miro board using its unique ID via the Miro MCP server. Ideal for accessing board-specific data directly.
Instructions
Retrieve information about a specific Miro board by its ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
boardId | Yes | Unique identifier (ID) of the board 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 you want to retrieve",
"type": "string"
}
},
"required": [
"boardId"
],
"type": "object"
}