Astra DB MCP Server

Official

FindRecord

Find records in a collection by field value

Input Schema

NameRequiredDescriptionDefault
collectionNameYesName of the collection to search in
fieldYesField name to search by (e.g., 'title', '_id', or any property)
limitNoMaximum number of records to return
valueYesValue to search for in the specified field

Input Schema (JSON Schema)

{ "properties": { "collectionName": { "description": "Name of the collection to search in", "type": "string" }, "field": { "description": "Field name to search by (e.g., 'title', '_id', or any property)", "type": "string" }, "limit": { "default": 10, "description": "Maximum number of records to return", "type": "number" }, "value": { "description": "Value to search for in the specified field", "type": [ "string", "number", "boolean" ] } }, "required": [ "collectionName", "field", "value" ], "type": "object" }