Astra DB MCP Server

Official

CreateRecord

Create a new record in a collection

Input Schema

NameRequiredDescriptionDefault
collectionNameYesName of the collection to create the record in
recordYesThe record data to insert

Input Schema (JSON Schema)

{ "properties": { "collectionName": { "description": "Name of the collection to create the record in", "type": "string" }, "record": { "description": "The record data to insert", "type": "object" } }, "required": [ "collectionName", "record" ], "type": "object" }