Get RCA Generation Progress and Results
tm.get_testExecutionRCAStatusPoll the status of test execution RCA generation, returning progress counts and a paginated list of completed RCA results with optional detail.
Instructions
Returns a progress summary (total/completed/in_progress/failed/pending counts) plus a paginated list of completed RCA results for a scope - the tool to poll with after calling tm.generate_testExecutionRCA, since generation is asynchronous. Accepts the same scope as tm.generate_testExecutionRCA/tm.get_testExecutionRCA: any combination of test_ids, job_ids, task_ids, or stage_ids (at least one required, each array capped at 100 IDs). Pass include_detail: true to hydrate each result with the full RCA detail (analysis, error timeline, steps to fix, stack traces - same content as tm.get_testExecutionRCA) - omitted by default to keep polling calls small. Supports limit/offset pagination over the results list (NOTE: offset-based, unlike tm.get_testExecutionRCA's page-based pagination - a real difference between these two otherwise-similar endpoints). A scope matching zero tests (wrong IDs, IDs with no failures, etc.) still returns a normal result with all-zero progress counts rather than an error - this tool surfaces the API's own explanatory message in that case. Read-only; does not modify anything (does NOT trigger generation itself - use tm.generate_testExecutionRCA for that).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| offset | No | ||
| job_ids | No | ||
| task_ids | No | ||
| test_ids | No | ||
| stage_ids | No | ||
| include_detail | No |