GetRecord
Retrieve a specific record from a specified collection in Astra DB using its unique ID. Simplify data access and management directly within the MCP Server.
Instructions
Get a specific record from a collection by ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
collectionName | Yes | Name of the collection to get the record from | |
recordId | Yes | ID 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"
}