DeleteRecord
Remove a specific record from a collection in Astra DB by specifying the collection name and record ID using the MCP Server's tool for efficient data management.
Instructions
Delete a record from a collection
Input Schema
Name | Required | Description | Default |
---|---|---|---|
collectionName | Yes | Name of the collection containing the record | |
recordId | Yes | ID 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"
}