get_table_schema
Retrieve schema details for a specific Iceberg table by specifying its namespace and table name, enabling efficient metadata queries within the IcebergMCP server.
Instructions
Provides the schema for a given Iceberg table
Input Schema
Name | Required | Description | Default |
---|---|---|---|
namespace | Yes | ||
table_name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"namespace": {
"title": "Namespace",
"type": "string"
},
"table_name": {
"title": "Table Name",
"type": "string"
}
},
"required": [
"namespace",
"table_name"
],
"title": "get_table_schemaArguments",
"type": "object"
}