describe_table
Retrieve the structure of a specified table in a MySQL database using the MCP MySQL Server, enabling clear insights into column names, data types, and other attributes for efficient database management.
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"
}