halopsa_list_tables
Discover available tables in the HaloPSA database to identify what data can be queried. Use this tool to explore database structure before writing SQL queries.
Instructions
List all available tables in the HaloPSA database by querying sys.tables. Returns a complete list of all tables that can be queried. Use this to discover what data is available before writing queries.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| filter | No | Optional filter to search for specific tables. Example: "fault", "user", "ticket" |
Input Schema (JSON Schema)
{
"properties": {
"filter": {
"description": "Optional filter to search for specific tables. Example: \"fault\", \"user\", \"ticket\"",
"type": "string"
}
},
"type": "object"
}