run-dashboard-tiles
Fetch dashboard configuration and execute selected tiles concurrently to download chart data as CSV. Supports running single, multiple, or all tiles for efficient data export.
Instructions
Run one or multiple dashboard tiles (or all tiles) concurrently.
This tool fetches the dashboard configuration once and then executes the selected tiles in parallel.
When to use:
To download the entire dashboard data.
To get data from multiple specific tiles at once (or from single tile).
Returns:
A dictionary where keys are tile UUIDs and values contain:
title: Tile titlestatus: "success" or "error"csv_data: CSV-formatted string with headers, data rows, and metadata (for successful tiles)error: Error message (for failed tiles)
Each CSV data includes a metadata comment line with row count and field information
If a tile fails to execute, the value will contain an error message.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| dashboard_name | Yes | Name of the dashboard (supports partial matching) | |
| tile_uuids | No | Optional: List of tile UUIDs to execute. If omitted or empty, ALL chart tiles on the dashboard will be executed. |