get_available_projects
Retrieve available Zebrunner projects with keys and IDs to support dynamic project selection for test case management and execution workflows.
Instructions
๐๏ธ Discover available projects with their keys and IDs for dynamic project selection
Input Schema
Name | Required | Description | Default |
---|---|---|---|
format | No | Output format: raw API response or formatted data | formatted |
includePaginationInfo | No | Include pagination metadata from projects-limit endpoint | |
publiclyAccessible | No | Filter by public accessibility (true=only public, false=only private, undefined=all) | |
starred | No | Filter by starred projects (true=only starred, false=only non-starred, undefined=all) |
Input Schema (JSON Schema)
{
"properties": {
"format": {
"default": "formatted",
"description": "Output format: raw API response or formatted data",
"enum": [
"raw",
"formatted"
],
"type": "string"
},
"includePaginationInfo": {
"default": false,
"description": "Include pagination metadata from projects-limit endpoint",
"type": "boolean"
},
"publiclyAccessible": {
"description": "Filter by public accessibility (true=only public, false=only private, undefined=all)",
"type": "boolean"
},
"starred": {
"description": "Filter by starred projects (true=only starred, false=only non-starred, undefined=all)",
"type": "boolean"
}
},
"type": "object"
}