UpdateRecord
Modify an existing record in a specified collection using its unique ID and updated data. Integrates with Astra DB MCP Server to manage database records via natural language commands.
Instructions
Update an existing record in a collection
Input Schema
Name | Required | Description | Default |
---|---|---|---|
collectionName | Yes | Name of the collection containing the record | |
record | Yes | The updated record data | |
recordId | Yes | ID 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"
}