list_tables
Retrieve all tables within a specified schema on a PostgreSQL database using the Model Context Protocol (MCP) for secure and efficient database exploration.
Instructions
List all tables in a schema
Input Schema
Name | Required | Description | Default |
---|---|---|---|
schema | No |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"schema": {
"maxLength": 63,
"minLength": 1,
"pattern": "^[a-zA-Z_][a-zA-Z0-9_]*$",
"type": "string"
}
},
"type": "object"
}