describe_table
Retrieve schema details for a specified table in a Turso database, enabling users to view structure and properties directly from the MCP server.
Instructions
Gets schema information for a table
Input Schema
Name | Required | Description | Default |
---|---|---|---|
database | No | Database name (optional, uses context if not provided) | |
table | Yes | Table name |
Input Schema (JSON Schema)
{
"properties": {
"database": {
"description": "Database name (optional, uses context if not provided)",
"type": "string"
},
"table": {
"description": "Table name",
"type": "string"
}
},
"required": [
"table"
],
"type": "object"
}