@tulip/mcp-server
Version:
Model Context Protocol server for Tulip API
24 lines (23 loc) • 747 B
JSON
{
"name": "deleteTableAggregation",
"description": "⚠️ ADMIN OPERATION ⚠️ Removes a Tulip Table aggregation by id. Corresponds to DELETE /tables/{tableId}/aggregation/{aggregationId}. Requires `tables:write` scope. [ADMIN]",
"inputSchema": {
"type": "object",
"properties": {
"tableId": {
"type": "string",
"description": "The id of a Tulip Table."
},
"aggregationId": {
"type": "string",
"description": "The id of a Tulip Table aggregation."
}
},
"required": ["tableId", "aggregationId"]
},
"category": "admin",
"type": "table",
"dangerous": true,
"httpType": "DELETE",
"url": "/tables/:tableId/aggregation/:aggregationId"
}