list_tables
Retrieve a list of tables within a specified or default schema in a PostgreSQL database using the MCP PostgreSQL Server's schema exploration capabilities.
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"
}