list_tables
Retrieve all tables from a SQL Server database to explore database structure and identify available data sources for querying.
Instructions
List all tables in a specific database
Input Schema
Name | Required | Description | Default |
---|---|---|---|
database | No | Database name (optional, uses current database if not specified) | |
schema | No | Schema name (optional, defaults to dbo) |
Input Schema (JSON Schema)
{
"properties": {
"database": {
"description": "Database name (optional, uses current database if not specified)",
"type": "string"
},
"schema": {
"description": "Schema name (optional, defaults to dbo)",
"type": "string"
}
},
"type": "object"
}