move_suite
Move a test suite to a different parent suite or to the root level. Provide the suite ID and new parent identifier (ID, title, or null).
Instructions
Move a test suite to a different parent suite, or to root level. Tip: Call get_project_context first to see the current suite tree.
Required: id (suite ID), parent (new parent ID, title, or null for root) Optional: project_id
Examples: Move under a parent: { "id": 10, "parent": "Authentication" } Move to root level: { "id": 10, "parent": null }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Suite ID to move (required) | |
| project_id | No | Project ID (optional if TC_DEFAULT_PROJECT is set) | |
| parent | Yes | New parent suite ID, title, or null to move to root level (required) |