@tulip/mcp-server
Version:
Model Context Protocol server for Tulip API
24 lines (23 loc) • 675 B
JSON
{
"name": "getTableQuery",
"description": "Looks up a table query for a Tulip Table by id. Corresponds to GET /tables/{tableId}/query/{queryId}. Requires `tables:read` scope. [READ-ONLY]",
"inputSchema": {
"type": "object",
"properties": {
"tableId": {
"type": "string",
"description": "The id of a Tulip Table."
},
"queryId": {
"type": "string",
"description": "The id of a Tulip Table query."
}
},
"required": ["tableId", "queryId"]
},
"category": "read-only",
"type": "table",
"dangerous": false,
"httpType": "GET",
"url": "/tables/:tableId/query/:queryId"
}