describe_table
Retrieve the structure of a specified table in MySQL or MongoDB databases using the MCP-MongoDB-MySQL-Server interface, enabling schema analysis and 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"
}