list_views
Retrieve all views within a specified schema to analyze database structure and understand available data perspectives for query optimization.
Instructions
List all views in a schema.
Args:
ctx: FastMCP context for progress reporting and logging
schema: Schema name (default: public)
Returns:
View information as a string
Input Schema
Name | Required | Description | Default |
---|---|---|---|
schema | No | public |
Input Schema (JSON Schema)
{
"properties": {
"schema": {
"default": "public",
"title": "Schema",
"type": "string"
}
},
"title": "list_viewsArguments",
"type": "object"
}