get_compatible_agents_for_queued_build
Identify available TeamCity build agents compatible with a specific queued or running build to facilitate deployment planning and resource allocation.
Instructions
List agents compatible with a queued/running build by buildId (optionally filter enabled only)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| buildId | Yes | Build ID | |
| includeDisabled | No | Include disabled agents (default false) |
Input Schema (JSON Schema)
{
"properties": {
"buildId": {
"description": "Build ID",
"type": "string"
},
"includeDisabled": {
"description": "Include disabled agents (default false)",
"type": "boolean"
}
},
"required": [
"buildId"
],
"type": "object"
}