get_table_metadata
Retrieve detailed table structure information including columns, data types, and foreign key relationships to understand database schema before querying.
Instructions
š [SAFE] Get detailed metadata for a specific table including all columns, data types, and foreign key relationships. Use this to understand table structure before writing queries. Risk: None - read-only operation.
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| tableId | Yes | The ID of the table | 
Input Schema (JSON Schema)
{
  "properties": {
    "tableId": {
      "description": "The ID of the table",
      "minimum": 1,
      "type": "integer"
    }
  },
  "required": [
    "tableId"
  ],
  "type": "object"
}