UNPKG

@tulip/mcp-server

Version:

Model Context Protocol server for Tulip API

32 lines (31 loc) 843 B
{ "name": "linkTableRecords", "description": "Links two records given a table link relationship. Corresponds to PUT /tableLinks/{tableLinkId}/link. 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 link" }, "rightRecord": { "type": "string", "description": "ID of the right record to link" } }, "required": [ "tableLinkId", "leftRecord", "rightRecord" ] }, "category": "write", "type": "table", "dangerous": false, "httpType": "PUT", "url": "/tableLinks/:tableLinkId/link" }