list_tables
Discover all tables in a Markdown file, showing columns, row counts, formats, and previews. Use it to map table structure before reading or editing.
Instructions
List all tables in a Markdown file with column descriptors and row previews.
Prefer this over grep for discovering table structure — returns column names, row counts, formats, and version hashes. Use search_tables to find specific data across tables.
Output format per table: T{index} {format} {rows}r {cols}c v:{hash} [{section heading}] {column descriptors as A:Name | B:Age | ...} row0: {first row cell values}
Use table_index (the number after T) with read_table and write tools.
Args: file_path: Absolute path to the Markdown file. preview_rows: Number of data rows to preview (default 1, 0 for none).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| file_path | Yes | ||
| preview_rows | No |