CreateRecord
Insert new data records into specified collections within Astra DB, enabling structured storage and management through natural language commands on the MCP Server.
Instructions
Create a new record in a collection
Input Schema
Name | Required | Description | Default |
---|---|---|---|
collectionName | Yes | Name of the collection to create the record in | |
record | Yes | The 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"
}