get-mindmap-nodes
Retrieve a structured list of mind map nodes from a Miro board using the board ID, enabling pagination and result limits for efficient data extraction.
Instructions
Retrieve a list of mind map nodes on a Miro board
Input Schema
Name | Required | Description | Default |
---|---|---|---|
boardId | Yes | Unique identifier (ID) of the board from which you want to retrieve mind map nodes | |
cursor | No | Cursor for pagination | |
limit | No | Maximum number of results to return (default: 50) |
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 mind map nodes",
"type": "string"
},
"cursor": {
"description": "Cursor for pagination",
"type": "string"
},
"limit": {
"description": "Maximum number of results to return (default: 50)",
"type": "number"
}
},
"required": [
"boardId"
],
"type": "object"
}