list_suites
Retrieve a hierarchical tree of all test suites in a TestCollab project, with optional filters by title, parent, or description.
Instructions
List all test suites in a TestCollab project as a hierarchical tree. Returns the complete suite tree with parent-child relationships.
Each suite node includes: id, title, parent_id, children (nested suites).
Optional filter:
title: Filter suites by title substring.
title_contains: Filter suites by title substring (applied at API level).
parent: Filter suites by parent suite ID.
description: Filter suites by description substring.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project_id | No | Project ID (optional if TC_DEFAULT_PROJECT is set) | |
| title | No | Filter suites whose title contains this string | |
| title_contains | No | Alias of title (contains match) | |
| parent | No | Filter suites by parent suite ID | |
| description | No | Filter suites whose description contains this string | |
| description_contains | No | Alias of description (contains match) |