mcp_quick_data_analysis
Analyze table statistics quickly with row counts, column distributions, and top values. Input a table name and optional sample size to generate insights via MCPQL.
Instructions
Quick statistical analysis of a table including row count, column distributions, and top values
Input Schema
Name | Required | Description | Default |
---|---|---|---|
sample_size | No | Sample size for statistics calculation | |
table_name | Yes | Fully qualified table name (schema.table), e.g. "dbo.Users" or "sales.OrderItems" |
Input Schema (JSON Schema)
{
"properties": {
"sample_size": {
"default": 1000,
"description": "Sample size for statistics calculation",
"type": "number"
},
"table_name": {
"description": "Fully qualified table name (schema.table), e.g. \"dbo.Users\" or \"sales.OrderItems\"",
"type": "string"
}
},
"required": [
"table_name"
],
"type": "object"
}