get_table_info
Retrieve detailed table information, including schema, indexes, and sample data, from SQLite databases using the SQLite MCP Server.
Instructions
Get comprehensive information about a table including schema, indexes, and sample data
Input Schema
Name | Required | Description | Default |
---|---|---|---|
sample_rows | No | Number of sample rows to return | |
table_name | Yes | Name of the table to analyze |
Input Schema (JSON Schema)
{
"properties": {
"sample_rows": {
"default": 5,
"description": "Number of sample rows to return",
"type": "number"
},
"table_name": {
"description": "Name of the table to analyze",
"type": "string"
}
},
"required": [
"table_name"
],
"type": "object"
}