@tulip/mcp-server
Version:
Model Context Protocol server for Tulip API
32 lines (31 loc) • 855 B
JSON
{
"name": "unlinkTableRecords",
"description": "Unlinks two records given a table link relationship. Corresponds to PUT /tableLinks/{tableLinkId}/unlink. Requires `tables:write` scope. [WRITE]",
"inputSchema": {
"type": "object",
"properties": {
"tableLinkId": {
"type": "string",
"description": "The ID of the table link"
},
"leftRecord": {
"type": "string",
"description": "ID of the left record to unlink"
},
"rightRecord": {
"type": "string",
"description": "ID of the right record to unlink"
}
},
"required": [
"tableLinkId",
"leftRecord",
"rightRecord"
]
},
"category": "write",
"type": "table",
"dangerous": false,
"httpType": "PUT",
"url": "/tableLinks/:tableLinkId/unlink"
}