list_database_tables
Retrieve all available tables in a specific database to identify queryable data sources before executing database queries.
Instructions
š [SAFE] List all tables in a specific database. Use this to see what tables are available before querying. Risk: None - read-only operation.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| databaseId | Yes | The ID of the database |
Input Schema (JSON Schema)
{
"properties": {
"databaseId": {
"description": "The ID of the database",
"minimum": 1,
"type": "integer"
}
},
"required": [
"databaseId"
],
"type": "object"
}