Astra DB MCP Server

Official

DeleteRecord

Delete a record from a collection

Input Schema

NameRequiredDescriptionDefault
collectionNameYesName of the collection containing the record
recordIdYesID of the record to delete

Input Schema (JSON Schema)

{ "properties": { "collectionName": { "description": "Name of the collection containing the record", "type": "string" }, "recordId": { "description": "ID of the record to delete", "type": "string" } }, "required": [ "collectionName", "recordId" ], "type": "object" }