list_tables
Query and retrieve a list of tables along with their basic details from a PostgreSQL database schema, aiding in database exploration and structure analysis.
Instructions
List all tables in the database with basic information
Input Schema
Name | Required | Description | Default |
---|---|---|---|
schema | No | Schema name (default: public) | public |
Input Schema (JSON Schema)
{
"properties": {
"schema": {
"default": "public",
"description": "Schema name (default: public)",
"type": "string"
}
},
"type": "object"
}