mcp_get_documents
Retrieve documents from a CosmosDB container using optional filters, partition keys, and limit settings. Streamline data queries for efficient analysis and extraction.
Instructions
Get documents from a container with optional filters
Input Schema
Name | Required | Description | Default |
---|---|---|---|
container_id | Yes | The ID of the container to query | |
filter_conditions | No | Optional filter conditions as key-value pairs | |
limit | No | Maximum number of documents to return | |
partition_key | No | Optional partition key to filter by |
Input Schema (JSON Schema)
{
"properties": {
"container_id": {
"description": "The ID of the container to query",
"type": "string"
},
"filter_conditions": {
"description": "Optional filter conditions as key-value pairs",
"type": "object"
},
"limit": {
"default": 100,
"description": "Maximum number of documents to return",
"type": "number"
},
"partition_key": {
"description": "Optional partition key to filter by",
"type": "string"
}
},
"required": [
"container_id"
],
"type": "object"
}