Astra DB MCP Server

Official

GetRecord

Get a specific record from a collection by ID

Input Schema

NameRequiredDescriptionDefault
collectionNameYesName of the collection to get the record from
recordIdYesID of the record to retrieve

Input Schema (JSON Schema)

{ "properties": { "collectionName": { "description": "Name of the collection to get the record from", "type": "string" }, "recordId": { "description": "ID of the record to retrieve", "type": "string" } }, "required": [ "collectionName", "recordId" ], "type": "object" }