mysql_list_tables
Lists all tables in a MySQL database to inspect schema structure and identify available data tables for querying or management operations.
Instructions
List all tables in the current or specified database
Input Schema
Name | Required | Description | Default |
---|---|---|---|
database | No | Database name (uses current database if not specified) |
Input Schema (JSON Schema)
{
"properties": {
"database": {
"description": "Database name (uses current database if not specified)",
"type": "string"
}
},
"type": "object"
}