describe_table
Retrieve schema details of a specific table in IoTDB MCP Server to understand its structure and metadata for efficient data management and querying.
Instructions
Get the schema information for a specific table Args: table_name: name of the table to describe
Input Schema
Name | Required | Description | Default |
---|---|---|---|
table_name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"table_name": {
"title": "Table Name",
"type": "string"
}
},
"required": [
"table_name"
],
"type": "object"
}