list_tables
Retrieve a list of tables within a PostgreSQL database using schema name. Ideal for inspecting and managing database structures efficiently.
Instructions
List tables in the database
Input Schema
Name | Required | Description | Default |
---|---|---|---|
schema | No | Schema name (default: public) |
Input Schema (JSON Schema)
{
"properties": {
"schema": {
"description": "Schema name (default: public)",
"type": "string"
}
},
"required": [],
"type": "object"
}