describe_table
Retrieve detailed schema information for a specified table using SingleStore MCP Server. Ideal for understanding table structure, field types, and metadata.
Instructions
Get detailed information about a table
Input Schema
Name | Required | Description | Default |
---|---|---|---|
table | Yes | Name of the table to describe |
Input Schema (JSON Schema)
{
"properties": {
"table": {
"description": "Name of the table to describe",
"type": "string"
}
},
"required": [
"table"
],
"type": "object"
}