describe_table
Extract and display the structure of a specified MySQL table, including its columns, data types, and schema details, using the standardized MCP MySQL Server interface.
Instructions
Get table structure
Input Schema
Name | Required | Description | Default |
---|---|---|---|
table | Yes | Table name |
Input Schema (JSON Schema)
{
"properties": {
"table": {
"description": "Table name",
"type": "string"
}
},
"required": [
"table"
],
"type": "object"
}