FindRecord
Search and retrieve records from a specified collection by field value using the Astra DB MCP Server. Define the collection, field, and value to filter results efficiently.
Instructions
Find records in a collection by field value
Input Schema
Name | Required | Description | Default |
---|---|---|---|
collectionName | Yes | Name of the collection to search in | |
field | Yes | Field name to search by (e.g., 'title', '_id', or any property) | |
limit | No | Maximum number of records to return | |
value | Yes | Value 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"
}
},
"required": [
"collectionName",
"field",
"value"
],
"type": "object"
}