mcp_get_document_by_id
Retrieve a specific document from an Azure CosmosDB container using its ID and partition key for precise data access and analysis.
Instructions
Get a specific document by its ID and partition key
Input Schema
Name | Required | Description | Default |
---|---|---|---|
container_id | Yes | The ID of the container | |
document_id | Yes | The ID of the document to retrieve | |
partition_key | Yes | The partition key value for the document |
Input Schema (JSON Schema)
{
"properties": {
"container_id": {
"description": "The ID of the container",
"type": "string"
},
"document_id": {
"description": "The ID of the document to retrieve",
"type": "string"
},
"partition_key": {
"description": "The partition key value for the document",
"type": "string"
}
},
"required": [
"container_id",
"document_id",
"partition_key"
],
"type": "object"
}