create_folder
Create a folder or suite in a project, auto-detecting type based on nesting. Returns new folder ID, type, and path.
Instructions
Create a folder or a suite in a project. Use type "suite" for a leaf that holds test cases, and "folder" for a container that holds other folders and suites. Omitting type gives "folder" at the root and "suite" when nested, which is usually what you want. Suites cannot be parents, so a suite always needs parentId. Returns the new folder id, its type, and its path. To read an existing one use get_folder; to list them use list_folders.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Folder/suite name | |
| type | No | OPTIONAL - auto-detected. "folder" can contain children, "suite" is a leaf for test cases. Defaults to "folder" at root, "suite" when nested. | |
| parentId | No | Parent folder UUID. Omit for root-level folder. Note: suites cannot be parents. | |
| projectId | Yes | Project UUID to create folder in |