list_hg_tables_in_a_schema
Retrieve a list of all tables, views, and partitioned tables within a specified schema in a Hologres database using the MCP server.
Instructions
List all tables in a specific schema in the current Hologres database, including their types (table, view, foreign table, partitioned table).
Input Schema
Name | Required | Description | Default |
---|---|---|---|
schema | Yes | Schema name to list tables from in Hologres database |
Input Schema (JSON Schema)
{
"properties": {
"schema": {
"description": "Schema name to list tables from in Hologres database",
"type": "string"
}
},
"required": [
"schema"
],
"type": "object"
}