get_cases
Retrieve all test cases within a project by filtering based on criteria like milestone, suite, severity, priority, automation, status, or external issues using QASE MCP Server.
Instructions
Get all test cases in a project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
automation | No | ||
behavior | No | ||
code | Yes | ||
externalIssuesIds | No | ||
externalIssuesType | No | ||
include | No | ||
limit | No | ||
milestoneId | No | ||
offset | No | ||
priority | No | ||
search | No | ||
severity | No | ||
status | No | ||
suiteId | No | ||
type | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"automation": {
"type": "string"
},
"behavior": {
"type": "string"
},
"code": {
"type": "string"
},
"externalIssuesIds": {
"items": {
"type": "string"
},
"type": "array"
},
"externalIssuesType": {
"enum": [
"asana",
"azure-devops",
"clickup-app",
"github-app",
"gitlab-app",
"jira-cloud",
"jira-server",
"linear",
"monday",
"redmine-app",
"trello-app",
"youtrack-app"
],
"type": "string"
},
"include": {
"type": "string"
},
"limit": {
"type": "number"
},
"milestoneId": {
"type": "number"
},
"offset": {
"type": "number"
},
"priority": {
"type": "string"
},
"search": {
"type": "string"
},
"severity": {
"type": "string"
},
"status": {
"type": "string"
},
"suiteId": {
"type": "number"
},
"type": {
"type": "string"
}
},
"required": [
"code"
],
"type": "object"
}