describe_table
Retrieve comprehensive details about a specific SQL table, including column definitions and sample data, to analyze database structure directly from MCP SQL Agent.
Instructions
Get detailed information about a specific table including columns and sample data
Input Schema
Name | Required | Description | Default |
---|---|---|---|
table_name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"table_name": {
"title": "Table Name",
"type": "string"
}
},
"required": [
"table_name"
],
"title": "describe_tableArguments",
"type": "object"
}