mcp_container_stats
Analyze Azure CosmosDB container statistics, including document count and partition key distribution, by specifying the container ID and optional sample size for precise insights.
Instructions
Get statistical information about a container including document count and partition key distribution
Input Schema
Name | Required | Description | Default |
---|---|---|---|
container_id | Yes | The ID of the container to analyze | |
sample_size | No | Sample size for statistics calculation |
Input Schema (JSON Schema)
{
"properties": {
"container_id": {
"description": "The ID of the container to analyze",
"type": "string"
},
"sample_size": {
"default": 1000,
"description": "Sample size for statistics calculation",
"type": "number"
}
},
"required": [
"container_id"
],
"type": "object"
}