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
deleteTableRecord.json•737 B
{
"name": "deleteTableRecord",
"description": "[DANGEROUS OPERATION] Deletes a specific record from a Tulip Table permanently. This action cannot be undone. Corresponds to DELETE /tables/{tableId}/records/{recordId}. Requires `tables:write` scope. [ADMIN]",
"inputSchema": {
"type": "object",
"properties": {
"tableId": {
"type": "string",
"description": "The ID of the table"
},
"recordId": {
"type": "string",
"description": "The ID of the record to delete"
}
},
"required": [
"tableId",
"recordId"
]
},
"category": "admin",
"type": "table",
"dangerous": true,
"httpType": "DELETE",
"url": "/tables/:tableId/records/:recordId"
}