get-mindmap-node
Retrieve details of a specific mind map node from a Miro board by providing the board ID and node ID. Integrates with the Miro MCP server to access mind map data efficiently.
Instructions
Retrieve information about a specific mind map node on a Miro board
Input Schema
Name | Required | Description | Default |
---|---|---|---|
boardId | Yes | Unique identifier (ID) of the board from which you want to retrieve a mind map node | |
itemId | Yes | Unique identifier (ID) of the mind map node 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 from which you want to retrieve a mind map node",
"type": "string"
},
"itemId": {
"description": "Unique identifier (ID) of the mind map node that you want to retrieve",
"type": "string"
}
},
"required": [
"boardId",
"itemId"
],
"type": "object"
}