@tulip/mcp-server
Version:
Model Context Protocol server for Tulip API
49 lines (48 loc) • 1.43 kB
JSON
{
"name": "createTableLink",
"description": "Creates a table link relationship. Corresponds to POST /tableLinks. Requires `tables:write` scope. [WRITE]",
"inputSchema": {
"type": "object",
"properties": {
"linkData": {
"type": "object",
"description": "Table link relationship data",
"properties": {
"leftTableId": {
"type": "string",
"description": "ID of the left table in the relationship"
},
"rightTableId": {
"type": "string",
"description": "ID of the right table in the relationship"
},
"relationshipType": {
"type": "string",
"description": "The type of relationship (e.g., one-to-one, one-to-many, many-to-many)"
},
"leftColumnLabel": {
"type": "string",
"description": "A label for the column in the left table"
},
"rightColumnLabel": {
"type": "string",
"description": "A label for the column in the right table"
}
},
"required": [
"leftTableId",
"rightTableId",
"relationshipType"
]
}
},
"required": [
"linkData"
]
},
"category": "write",
"type": "table",
"dangerous": false,
"httpType": "POST",
"url": "/tableLinks"
}