list-tables
Retrieve a list of all tables within a specified database and schema using the Superset MCP Server. Simplify database exploration by accessing structured table information for efficient querying and analysis.
Instructions
获取指定数据库的表列表
Input Schema
Name | Required | Description | Default |
---|---|---|---|
databaseId | Yes | 数据库ID | |
schema | No | Schema名称 |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"databaseId": {
"description": "数据库ID",
"type": "number"
},
"schema": {
"description": "Schema名称",
"type": "string"
}
},
"required": [
"databaseId"
],
"type": "object"
}