list_projects
Retrieve and filter TeamCity projects with pagination support for efficient CI/CD server management and project organization.
Instructions
List TeamCity projects (supports pagination)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| all | No | Fetch all pages up to maxPages | |
| fields | No | Optional fields selector for server-side projection | |
| locator | No | Optional locator to filter projects | |
| maxPages | No | Max pages to fetch (when all=true) | |
| pageSize | No | Items per page (default 100) | |
| parentProjectId | No | Filter by parent project ID |
Input Schema (JSON Schema)
{
"properties": {
"all": {
"description": "Fetch all pages up to maxPages",
"type": "boolean"
},
"fields": {
"description": "Optional fields selector for server-side projection",
"type": "string"
},
"locator": {
"description": "Optional locator to filter projects",
"type": "string"
},
"maxPages": {
"description": "Max pages to fetch (when all=true)",
"type": "number"
},
"pageSize": {
"description": "Items per page (default 100)",
"type": "number"
},
"parentProjectId": {
"description": "Filter by parent project ID",
"type": "string"
}
},
"type": "object"
}