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
deleteAllTableRecords.json•657 B
{
"name": "deleteAllTableRecords",
"description": "[DANGEROUS] Deletes ALL records from a Tulip Table permanently. This will wipe all data in the table and cannot be undone. Use with extreme caution. Corresponds to DELETE /tables/{tableId}/records. Requires `tables:write` scope. [ADMIN]",
"inputSchema": {
"type": "object",
"properties": {
"tableId": {
"type": "string",
"description": "The ID of the table to delete all records from"
}
},
"required": [
"tableId"
]
},
"category": "admin",
"type": "table",
"dangerous": true,
"httpType": "DELETE",
"url": "/tables/:tableId/records"
}