We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/tulip/tulip-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
unlinkTableRecords.json•824 B
{
"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"
}