delete-connector
Remove a specific connector from a Miro board by providing the board and connector IDs. Simplify connector management using the Miro MCP server.
Instructions
Delete a specific connector from 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 delete |
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 delete",
"type": "string"
}
},
"required": [
"boardId",
"connectorId"
],
"type": "object"
}