mcp_get_column_stats
Analyze and retrieve detailed statistics for a specific column in a table using this MCPQL server tool for efficient database insights and performance optimization.
Instructions
Get comprehensive statistics for a specific column in a table
Input Schema
Name | Required | Description | Default |
---|---|---|---|
column_name | Yes | Name of the column to analyze | |
table_name | Yes | Fully qualified table name (schema.table), e.g. "api.Idiomas" |
Input Schema (JSON Schema)
{
"properties": {
"column_name": {
"description": "Name of the column to analyze",
"type": "string"
},
"table_name": {
"description": "Fully qualified table name (schema.table), e.g. \"api.Idiomas\"",
"type": "string"
}
},
"required": [
"table_name",
"column_name"
],
"type": "object"
}