Describe table
describe_tableRetrieve column definitions, primary and foreign keys, and indexes for a SQL Server table to understand its structure. Works with schema-qualified names and respects the configured allowlist.
Instructions
Describe a table: columns (name, type, nullability, identity), primary key, foreign keys and indexes, read from INFORMATION_SCHEMA / sys catalog views. Accepts "Table" or "schema.Table". Subject to the table allowlist if configured.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| table | Yes | Table name, optionally schema-qualified, e.g. "dbo.Orders" |