get-board-classification
Retrieve board classification details for a specific board using orgId, teamId, and boardId in Miro MCP server, designed for Enterprise use cases.
Instructions
Retrieves board classification for a board (Enterprise only)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
boardId | Yes | Unique identifier of the board that you want to retrieve | |
orgId | Yes | id of the organization | |
teamId | Yes | id of the team |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"boardId": {
"description": "Unique identifier of the board that you want to retrieve",
"type": "string"
},
"orgId": {
"description": "id of the organization",
"type": "string"
},
"teamId": {
"description": "id of the team",
"type": "string"
}
},
"required": [
"orgId",
"teamId",
"boardId"
],
"type": "object"
}