get-specific-connector
Retrieve details of a specific connector on a Miro board by providing the board ID and connector ID. Use this tool to access targeted connector information directly.
Instructions
Retrieve information about a specific connector on a Miro board
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| boardId | Yes | Unique identifier (ID) of the board that contains the connector | |
| connectorId | Yes | Unique identifier (ID) of the connector 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 connector",
"type": "string"
},
"connectorId": {
"description": "Unique identifier (ID) of the connector that you want to retrieve",
"type": "string"
}
},
"required": [
"boardId",
"connectorId"
],
"type": "object"
}