Astra DB MCP Server

Official

ListRecords

List records from a collection in the database

Input Schema

NameRequiredDescriptionDefault
collectionNameYesName of the collection to list records from
limitNoMaximum number of records to return

Input Schema (JSON Schema)

{ "properties": { "collectionName": { "description": "Name of the collection to list records from", "type": "string" }, "limit": { "default": 10, "description": "Maximum number of records to return", "type": "number" } }, "required": [ "collectionName" ], "type": "object" }