create_suite
Create a new test suite in TestCollab. Specify a title, and optionally a parent suite or description to structure tests.
Instructions
Create a new test suite in TestCollab. Tip: Call get_project_context first to see existing suites and resolve parent suite names to IDs.
Required: title Optional: project_id, parent (suite ID or title), description
Examples: Root suite: { "title": "Authentication" } Child suite: { "title": "Login", "parent": "Authentication" } With description: { "title": "API Tests", "description": "Tests for REST API endpoints" }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project_id | No | Project ID (optional if TC_DEFAULT_PROJECT is set) | |
| title | Yes | Suite title (required) | |
| description | No | Suite description | |
| parent | No | Parent suite ID or title. Omit for a root-level suite. |