get_tables
Retrieve a paginated list of database tables with metadata such as type, comment, engine, and row count. Use pagination to avoid token overflow.
Instructions
Get a list of all tables in the database with their metadata (type, comment, engine, row count). 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: 1000 | |
| compact | No | Use compact format with abbreviated field names (n, t) to reduce token usage. Default: false |