Astra DB MCP Server

Official

CreateCollection

Create a new collection in the database

Input Schema

NameRequiredDescriptionDefault
collectionNameYesName of the collection to create
dimensionNoThe dimensions of the vector collection, if vector is true
vectorNoWhether to create a vector collection

Input Schema (JSON Schema)

{ "properties": { "collectionName": { "description": "Name of the collection to create", "type": "string" }, "dimension": { "default": 1536, "description": "The dimensions of the vector collection, if vector is true", "type": "number" }, "vector": { "default": true, "description": "Whether to create a vector collection", "type": "boolean" } }, "required": [ "collectionName" ], "type": "object" }