list_tables
Retrieve all tables within a specified database and schema to explore database structure and identify available data sources.
Instructions
List all tables in a specific database and schema
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| database | Yes | Database name | |
| schema | Yes | Schema name | 
Input Schema (JSON Schema)
{
  "properties": {
    "database": {
      "description": "Database name",
      "type": "string"
    },
    "schema": {
      "description": "Schema name",
      "type": "string"
    }
  },
  "required": [
    "database",
    "schema"
  ],
  "type": "object"
}