get_schema
Get complete database schema: table names, columns, data types, nullable status, defaults, comments. Understand the database structure before writing queries. Paginated output prevents token overflow.
Instructions
Get the complete database schema for all tables. This includes table names, column names, data types, nullable status, defaults, and comments. Use this to understand the database structure before writing queries. Paginated to prevent token overflow.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | Page number for pagination (1-indexed). Default: 1 | |
| limit | No | Number of tables per page. Default: 50, Max: 200 | |
| compact | No | Use compact format with abbreviated field names (n, t) to reduce token usage. Default: false |