list_html_reports
List available HTML reports with metadata like file name, type, signal, and size to identify diagnostic reports without consuming tokens.
Instructions
List all available HTML reports in reports/ directory.
Returns list of reports with metadata (file name, type, signal, size).
Does NOT return HTML content - only metadata to avoid token consumption.
Returns:
List of dicts with report information
Example:
>>> reports = list_html_reports()
>>> print(f"Found {len(reports)} reports")
>>> for r in reports:
... print(f"- {r['file_name']}: {r['report_type']} for {r['signal_file']}")
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |