Trino MCP Server

inspect_table

Get detailed metadata about a table. Args: catalog: Catalog name. schema: Schema name. table: Table name. Returns: Dict[str, Any]: Table metadata including columns, statistics, etc.

Input Schema

NameRequiredDescriptionDefault
catalogYes
schemaYes
tableYes

Input Schema (JSON Schema)

{ "properties": { "catalog": { "title": "Catalog", "type": "string" }, "schema": { "title": "Schema", "type": "string" }, "table": { "title": "Table", "type": "string" } }, "required": [ "catalog", "schema", "table" ], "title": "inspect_tableArguments", "type": "object" }

You must be authenticated.

Other Tools