steampipe_table_show
Retrieve comprehensive metadata about a Steampipe table, including columns, data types, and descriptions, by specifying the table name and optional schema on the MCP server.
Instructions
Get detailed information about a specific Steampipe table, including column definitions, data types, and descriptions.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | The name of the table to show details for. Can be schema qualified (e.g. 'aws_account' or 'aws.aws_account'). | |
schema | No | Optional schema name. If provided, only searches in this schema. If not provided, searches across all schemas. |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"name": {
"description": "The name of the table to show details for. Can be schema qualified (e.g. 'aws_account' or 'aws.aws_account').",
"type": "string"
},
"schema": {
"description": "Optional schema name. If provided, only searches in this schema. If not provided, searches across all schemas.",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}