Astra DB MCP Server

Official

UpdateCollection

Update an existing collection in the database

Input Schema

NameRequiredDescriptionDefault
collectionNameYesName of the collection to update
newNameYesNew name for the collection

Input Schema (JSON Schema)

{ "properties": { "collectionName": { "description": "Name of the collection to update", "type": "string" }, "newName": { "description": "New name for the collection", "type": "string" } }, "required": [ "collectionName", "newName" ], "type": "object" }