get_suites
Retrieve all test suites in a project using code, search, limit, and offset parameters for efficient test management with QASE MCP Server integration.
Instructions
Get all test suites in a project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
code | Yes | ||
limit | No | ||
offset | No | ||
search | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"code": {
"type": "string"
},
"limit": {
"type": "number"
},
"offset": {
"type": "number"
},
"search": {
"type": "string"
}
},
"required": [
"code"
],
"type": "object"
}