queue_active
Poll background tasks and return a clear done or not-done signal, filtering out finished tasks to avoid polling ambiguity.
Instructions
Poll FastPanel background tasks and get a deterministic done/not-done signal. The raw /api/queue endpoint also returns recently-FINISHED tasks (status SUCCESS/FAILED), which makes naive polling ambiguous. This tool filters to genuinely in-flight tasks by default and adds meta.all_done (true when nothing is still running) so you can loop until done. Set include_finished:true to also see the just-completed tasks (useful to learn whether an async op SUCCEEDED or FAILED).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| include_finished | No | If true, return finished tasks too (with their SUCCESS/FAILED status) instead of only in-flight ones. |