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
createTableLink.json•1.35 KiB
{
"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"
}