get-table-schema
Retrieve detailed database table schema including RLS policies, indexes, and constraints to understand table structure and relationships for database analysis and management.
Instructions
Returns the detailed schema(including RLS, indexes, constraints, etc.) of a specific table
Input Schema
Name | Required | Description | Default |
---|---|---|---|
apiKey | No | API key for authentication (optional if provided via --api_key) | |
tableName | Yes | Name of the table |
Input Schema (JSON Schema)
{
"properties": {
"apiKey": {
"description": "API key for authentication (optional if provided via --api_key)",
"type": "string"
},
"tableName": {
"description": "Name of the table",
"type": "string"
}
},
"required": [
"tableName"
],
"type": "object"
}