Astra DB MCP Server

Official

UpdateRecord

Update an existing record in a collection

Input Schema

NameRequiredDescriptionDefault
collectionNameYesName of the collection containing the record
recordYesThe updated record data
recordIdYesID of the record to update

Input Schema (JSON Schema)

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