mcp_analyze_schema
Analyzes document schemas in a CosmosDB container to identify data structure and types, using a specified sample size for efficient analysis.
Instructions
Analyze the schema of documents in a container to understand data structure and types
Input Schema
Name | Required | Description | Default |
---|---|---|---|
container_id | Yes | The ID of the container to analyze | |
sample_size | No | Number of documents to sample for analysis |
Input Schema (JSON Schema)
{
"properties": {
"container_id": {
"description": "The ID of the container to analyze",
"type": "string"
},
"sample_size": {
"default": 100,
"description": "Number of documents to sample for analysis",
"type": "number"
}
},
"required": [
"container_id"
],
"type": "object"
}