get_table_stats
Retrieve detailed statistics and size information for tables stored on the MCP Postgres Server, enabling efficient database analysis and optimization.
Instructions
Get table statistics and size information
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| schema | Yes | ||
| table | No |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"schema": {
"maxLength": 63,
"minLength": 1,
"pattern": "^[a-zA-Z_][a-zA-Z0-9_]*$",
"type": "string"
},
"table": {
"maxLength": 63,
"minLength": 1,
"pattern": "^[a-zA-Z_][a-zA-Z0-9_]*$",
"type": "string"
}
},
"required": [
"schema"
],
"type": "object"
}