Skip to main content
Glama
Daghis
by Daghis

TeamCity MCP Server

CI CodeQL codecov License: MIT

A Model Control Protocol (MCP) server that bridges AI coding assistants with JetBrains TeamCity CI/CD server, exposing TeamCity operations as MCP tools.

NOTE

Project status (June 2026): stable, low-key maintenance. This does what it set out to do and is no longer under active development. It still works and stays installable; issues and PRs may get slow or no response, and security fixes are best-effort.

JetBrains now ships official AI integration for TeamCity β€” a built-in MCP and the TeamCity CLI with an installable agent skill β€” which is the better default for most workflows. See How this compares to JetBrains' official tooling below before adopting.

Overview

The TeamCity MCP Server allows developers using AI-powered coding assistants (Claude Code, Cursor, Windsurf) to interact with TeamCity directly from their development environment via MCP tools.

Upgrading from 1.x? Version 2.0.0 moved 15 tools from Dev to Full mode, including queue management, agent compatibility checks, and server health monitoring. If you relied on these tools in Dev mode, switch to MCP_MODE=full or use runtime mode switching (v2.1.0+). See CHANGELOG.md for details.

Related MCP server: Jenkins MCP Server

Features

πŸš€ Two Operational Modes

  • Dev Mode (default): Safe CI/CD operations (31 tools, ~14k context tokens)

    • Trigger builds and monitor status

    • Fetch build logs and inspect test failures

    • List projects, configurations, and queue

    • Read parameters and investigate problems

  • Full Mode: Complete infrastructure management (87 tools, ~26k context tokens)

    • All Dev mode features, plus:

    • Create and clone build configurations

    • Manage build steps, triggers, and dependencies

    • Configure VCS roots and agents

    • Full CRUD for parameters (build config, project, and output parameters)

    • Queue management and server administration

Runtime Mode Switching (v2.1.0+): Switch between modes at runtime using the get_mcp_mode and set_mcp_mode toolsβ€”no restart required. MCP clients that support notifications will see the tool list update automatically.

See the Tools Mode Matrix for the complete list of 87 tools and their availability by mode.

🎯 Key Capabilities

  • Trigger and monitor builds, fetch logs, and inspect test failures

  • Token-based authentication to TeamCity; sensitive values redacted in logs

  • Modern architecture: simple, direct implementation with a singleton client

  • Performance-conscious: fast startup with minimal overhead

  • Clean codebase with clear module boundaries

How this compares to JetBrains' official tooling

As of June 2026, JetBrains ships first-party AI integration for TeamCity: a built-in MCP endpoint and the TeamCity CLI, which includes an installable agent skill. Together these are JetBrains' recommended path and cover the common AI workflows β€” reading logs, diagnosing failures, and rerunning builds β€” with no install and official support.

teamcity-mcp predates that tooling and overlaps with it. Broadly, the official tooling is the better default today; teamcity-mcp's remaining edge is a broader set of write and management operations exposed as an MCP server. That gap is real but narrowing, and JetBrains' tooling is evolving quickly β€” so rather than pin down a feature-by-feature comparison here (it would go stale fast), check the current docs and pick what fits:

If you're comfortable with JetBrains' CLI, you may not need this project at all. It stays MIT-licensed and installable for whatever the built-ins don't yet reach β€” fork it if you want to take it further yourself.

Installation

Prerequisites

  • Node.js >= 20.10.0 (LTS versions 20, 22, 24 tested in CI)

  • TeamCity Server 2020.1+ with REST API access

  • TeamCity authentication token

Quick Start

# Clone the repository
git clone https://github.com/Daghis/teamcity-mcp.git
cd teamcity-mcp

# Install dependencies
npm install

# Configure environment
cp .env.example .env
# Edit .env with your TeamCity URL and token

# Run in development mode
npm run dev

npm Package

Run the MCP server via npx (requires Node 20.x). Set your TeamCity environment variables inline or via a .env in the working directory.

# One-off run (inline envs)
TEAMCITY_URL="https://teamcity.example.com" \
TEAMCITY_TOKEN="<your_token>" \
MCP_MODE=dev \
npx -y @daghis/teamcity-mcp

# Or rely on .env in the current directory
npx -y @daghis/teamcity-mcp

Claude Code

  • Add the MCP (relying on .env for configuration):

    • claude mcp add teamcity -- npx -y @daghis/teamcity-mcp

  • With env vars (if not using .env):

    • claude mcp add teamcity -e TEAMCITY_URL="https://teamcity.example.com" -e TEAMCITY_TOKEN="tc_<your_token>" -- npx -y @daghis/teamcity-mcp

  • With CLI arguments (recommended for Windows):

    • claude mcp add teamcity -- npx -y @daghis/teamcity-mcp --url "https://teamcity.example.com" --token "tc_<your_token>" --mode dev

  • Add -s user to install user-wide instead of project-scoped (default)

  • Context usage (Opus 4.1, estimates):

    • Dev (default): ~14k tokens for MCP tools

    • Full (MCP_MODE=full): ~26k tokens for MCP tools

Windows Users

On Windows, Claude Code's MCP configuration may not properly merge environment variables. Use CLI arguments as a workaround:

{
  "mcpServers": {
    "teamcity": {
      "command": "npx",
      "args": [
        "-y",
        "@daghis/teamcity-mcp",
        "--url",
        "https://teamcity.example.com",
        "--token",
        "YOUR_TOKEN"
      ]
    }
  }
}

Or use a config file for better security (token not visible in process list):

{
  "mcpServers": {
    "teamcity": {
      "command": "npx",
      "args": ["-y", "@daghis/teamcity-mcp", "--config", "C:\\path\\to\\teamcity.env"]
    }
  }
}

Configuration

Environment is validated centrally with Zod. Supported variables and defaults:

# Server Configuration
PORT=3000
NODE_ENV=development
LOG_LEVEL=info

# TeamCity Configuration (aliases supported)
TEAMCITY_URL=https://teamcity.example.com
TEAMCITY_TOKEN=your-auth-token
# Optional aliases:
# TEAMCITY_SERVER_URL=...
# TEAMCITY_API_TOKEN=...

# MCP Mode (dev or full)
MCP_MODE=dev

# Optional advanced TeamCity options (defaults shown)
# Connection
# TEAMCITY_TIMEOUT=30000
# TEAMCITY_MAX_CONCURRENT=10
# TEAMCITY_KEEP_ALIVE=true
# TEAMCITY_COMPRESSION=true

# Extra headers attached to every TeamCity request β€” useful when TeamCity
# sits behind a reverse proxy that gates access on custom headers (e.g.
# Cloudflare Zero Trust service tokens). One env var per header; the part
# after `TEAMCITY_HEADER_` is used verbatim as the HTTP header name.
# Example (note the literal hyphens β€” most shells need quoting):
# TEAMCITY_HEADER_CF-Access-Client-Id=<id>
# TEAMCITY_HEADER_CF-Access-Client-Secret=<secret>

# Retry
# TEAMCITY_RETRY_ENABLED=true
# TEAMCITY_MAX_RETRIES=3
# TEAMCITY_RETRY_DELAY=1000
# TEAMCITY_MAX_RETRY_DELAY=30000

# Pagination
# TEAMCITY_PAGE_SIZE=100
# TEAMCITY_MAX_PAGE_SIZE=1000
# TEAMCITY_AUTO_FETCH_ALL=false

# Circuit Breaker
# TEAMCITY_CIRCUIT_BREAKER=true
# TEAMCITY_CB_FAILURE_THRESHOLD=5
# TEAMCITY_CB_RESET_TIMEOUT=60000
# TEAMCITY_CB_SUCCESS_THRESHOLD=2

These values are normalized in src/config/index.ts and consumed by src/teamcity/config.ts via helper getters.

Usage Examples

Once integrated with your AI coding assistant:

"Build the frontend on feature branch"
"Why did last night's tests fail?"
"Deploy staging with the latest build"
"Create a new build config for the mobile app"

Tool Responses and Pagination

  • Responses: Tools now return consistent MCP content. For list/get operations, the content[0].text contains a JSON string. Example shape: { "items": [...], "pagination": { "page": 1, "pageSize": 100 } } or { "items": [...], "pagination": { "mode": "all", "pageSize": 100, "fetched": 250 } }.

  • Pagination: Most list_* tools accept pageSize, maxPages, and all:

    • pageSize controls items per page.

    • all: true fetches multiple pages up to maxPages.

    • Legacy count on list_builds is kept for compatibility but pageSize is preferred.

Validation and Errors

  • Input validation: Tool inputs are validated with Zod schemas; invalid input returns a structured error payload in the response content (JSON string) with success: false and error.code = VALIDATION_ERROR.

  • Error shaping: Errors are formatted consistently via a global handler. In production, messages may be sanitized; sensitive values (e.g., tokens) are redacted in logs.

API Usage

import { TeamCityAPI } from '@/api-client';

// Get the API client instance
const api = TeamCityAPI.getInstance();

// List projects
const projects = await api.listProjects();

// Get build status
const build = await api.getBuild('BuildId123');

// Trigger a new build
const newBuild = await api.triggerBuild('BuildConfigId', {
  branchName: 'main',
});

Note: The legacy helpers exported from src/teamcity/index.ts remain only for compatibility and include placeholder implementations. Prefer the MCP tools (see the reference linked above) or the TeamCityAPI shown here when automating workflows.

Development

# Run tests
npm test

# Run tests with coverage
npm run test:coverage

# Lint code
npm run lint

# Format code
npm run format

# Type check
npm run typecheck

# Build for production
npm run build

# Analyze bundle for Codecov
npm run build:bundle

Bundle analysis in CI

The CI workflow runs npm run build:bundle and uploads the generated coverage/bundles JSON using codecov/codecov-action with the javascript-bundle plugin.

Project Structure

teamcity-mcp/
β”œβ”€β”€ src/                    # Source code
β”‚   β”œβ”€β”€ tools.ts           # All 87 MCP tool definitions
β”‚   β”œβ”€β”€ server.ts          # MCP server setup
β”‚   β”œβ”€β”€ api-client.ts      # TeamCity API singleton
β”‚   β”œβ”€β”€ config/            # Configuration with Zod validation
β”‚   β”œβ”€β”€ teamcity/          # Domain logic (build, agent, config managers)
β”‚   β”œβ”€β”€ teamcity-client/   # Auto-generated OpenAPI client
β”‚   β”œβ”€β”€ types/             # TypeScript type definitions
β”‚   └── utils/             # Logger, MCP helpers, pagination
β”œβ”€β”€ tests/                  # Unit and integration tests
β”œβ”€β”€ docs/                   # Documentation
└── scripts/                # Build and maintenance scripts

API Documentation

The MCP server exposes tools for TeamCity operations. Each tool corresponds to specific TeamCity REST API endpoints:

Build Management

  • TriggerBuild - Queue a new build

  • GetBuildStatus - Check build progress

  • FetchBuildLog - Retrieve build logs

  • ListBuilds - Search builds by criteria

Test Analysis

  • ListTestFailures - Get failing tests

  • GetTestDetails - Detailed test information

  • AnalyzeBuildProblems - Identify failure reasons

Configuration (Full Mode Only)

  • create_build_config - Create new TeamCity build configurations with full support for:

    • VCS roots (Git, SVN, Perforce) with authentication

    • Build steps (script, Maven, Gradle, npm, Docker, PowerShell)

    • Triggers (VCS, schedule, finish-build, maven-snapshot)

    • Parameters and template-based configurations

    • See the MCP Tool Reference for argument details and additional options.

  • clone_build_config - Duplicate existing configurations into any project, preserving steps, triggers, and parameters.

  • update_build_config - Adjust names, descriptions, artifact rules, and pause state for a configuration.

  • manage_build_steps - Add, update, remove, or reorder build steps through a single tool surface.

  • manage_build_triggers - Add or delete build triggers with full property support.

  • create_vcs_root & add_vcs_root_to_build - Define VCS roots and attach them to build configurations.

See also: docs/TEAMCITY_MCP_TOOLS_GUIDE.md for expanded workflows and examples that align with the current MCP implementation.

Contributing

We welcome contributions! Please see CONTRIBUTING.md for details.

Security

Token Management

  • Configure TEAMCITY_TOKEN via environment variable or config file (see .env.example); never commit real tokens

  • Use a token with minimal required permissions; read-only tokens work for most Dev mode operations

  • Token-based authentication only; the MCP server does not support username/password

  • Logs redact sensitive values including tokens

Mode Selection

  • Prefer Dev mode unless Full mode is explicitly neededβ€”this limits the blast radius of any misconfiguration or prompt injection

  • Full mode enables destructive operations (project deletion, agent management) that cannot be easily undone

Network Security

  • Always use HTTPS for TeamCity connections; the server does not enforce this but strongly recommends it

  • The MCP server connects only to the configured TeamCity URL; no other network calls are made

AI Assistant Considerations

  • AI assistants could be manipulated via prompt injection in build logs, test output, or other TeamCity data

  • Dev mode's limited tool set reduces the impact of such attacks

  • All actions appear in TeamCity's audit log under the token's associated user

  • Build logs and test failure details may contain sensitive information (secrets, paths, internal URLs) that become visible to the AI assistant

Repository Security

This repository has GitHub secret scanning and push protection enabled. See SECURITY.md for vulnerability reporting.

Support

Acknowledgments

  • JetBrains TeamCity for the excellent CI/CD platform

  • Anthropic for the Model Control Protocol specification

  • The open-source community for continuous support

  • See THIRD_PARTY_NOTICES.md for third-party licenses


Built with ❀️ for developers who love efficient CI/CD workflows

Available Tools

32 tools
analyze_build_problemsB
Read-onlyIdempotent

Analyze and report build problems and failures.

ParametersJSON Schema
NameRequiredDescriptionDefault
buildIdNoBuild ID (internal TeamCity ID)
buildNumberNoHuman-readable build number (requires buildTypeId)
buildTypeIdNoBuild configuration ID (required when using buildNumber)

TDQS

B3.1/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already indicate a safe, read-only, idempotent operation. The description does not add behavioral details beyond what annotations provide, so a baseline score of 3 is appropriate.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single concise sentence, though it could benefit from a bit more context for clarity.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

No output schema is provided, and the description does not explain the format or nature of the analysis report, leaving ambiguity.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the baseline is 3. The description adds no extra meaning to parameters.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb ('Analyze and report') and the resource ('build problems and failures'), but it does not differentiate from sibling tools like list_problems.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance is provided on when to use this tool instead of alternatives such as get_build or list_problems.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

cancel_buildA

Cancel or stop a running or queued build, with optional comment and requeue flag. Returns the cancelled build; returns 404 if the build is unknown.

ParametersJSON Schema
NameRequiredDescriptionDefault
buildIdYesBuild ID
commentNoOptional cancellation comment
readdIntoQueueNoIf true, a new identical build will be queued after cancel (running builds only). Defaults to false.

TDQS

A3.6/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations provide basic hints (non-destructive, non-idempotent). Description adds return value and 404 error handling, but does not clarify idempotency or side effects of cancelling a build, especially with requeue.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences, no fluff, front-loaded with action and scope.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Covers core action, parameters, and return value. Missing details on behavior if build is already cancelled or if requeue affects state. Adequate for simple operation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema has 100% description coverage for all 3 parameters. Description mentions comment and requeue flag but adds no new semantic value beyond schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool cancels or stops a running or queued build, with optional comment and requeue flag. It distinguishes from siblings like cancel_queued_build by specifying scope.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No explicit guidance on when to use this tool vs alternatives (e.g., cancel_queued_build). Does not mention prerequisites or when not to use.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

cancel_queued_buildA

Cancel a queued (not-yet-running) build. Idempotent; returns 404 if the build already started or was cancelled.

ParametersJSON Schema
NameRequiredDescriptionDefault
buildIdYesQueued build ID

TDQS

A3.6/5.0
Behavior1/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotation idempotentHint is false, but description claims the tool is idempotent. This is a direct contradiction. The description does disclose the 404 return condition, but the contradiction undermines trust.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences with no wasted words. Every sentence adds value: purpose, scope, idempotency, and error condition.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The description explains the return behavior (404) for edge cases, which compensates for the lack of output schema. It could mention the success response, but overall it is sufficient for a simple cancel operation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% and the parameter buildId is described as 'Queued build ID'. The description does not add any additional semantic meaning beyond the schema, which is adequate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description specifies 'Cancel a queued (not-yet-running) build' with a clear verb and resource, distinguishing it from sibling tools like cancel_build. It also notes idempotency and the 404 response for already-started/cancelled builds.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explicitly states this tool is for 'queued (not-yet-running)' builds and clarifies behavior when build has started or was cancelled. It implies not to use for running builds, but does not explicitly name the alternative (cancel_build).

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

download_build_artifactA
Read-onlyIdempotent

Download a single build artifact, with base64, text, or streaming output. Returns the artifact bytes or stream metadata; returns 404 if the build or path is unknown.

ParametersJSON Schema
NameRequiredDescriptionDefault
buildIdNoBuild ID (internal TeamCity ID)
buildNumberNoHuman-readable build number (requires buildTypeId)
buildTypeIdNoBuild configuration ID (required when using buildNumber)
artifactPathYesArtifact path or name
encodingNoResponse encoding: 'base64' (default), 'text', or 'stream'base64
maxSizeNoMaximum artifact size (bytes) allowed before aborting
outputPathNoOptional absolute path to write streamed content; defaults to a temp file when streaming

TDQS

A4/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare read-only and idempotent. Description adds return types (bytes/stream metadata), error case (404), and encoding options. Does not disclose maxSize abort behavior but overall good context.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two concise sentences. First sentence states core function and options; second states return and error. No redundant information. Front-loaded and efficient.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a tool with 7 parameters (1 required) and no output schema, description covers purpose, return, error, and encoding. Missing details on maxSize abort or outputPath usage, but schema provides those. Overall adequate.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema covers 100% of parameters with descriptions, so baseline 3. Description adds context about output formats but no new details beyond schema. Parameter meanings are already clear from schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Clear verb 'download' and resource 'single build artifact'. Distinguishes from sibling 'download_build_artifacts' (plural) by being singular. Mentions output formats and error condition (404).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Implied usage for single artifact vs. sibling for multiple, but no explicit when-to-use or when-not-to-use. No exclusions or alternatives named. Relies on schema for parameters.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

download_build_artifactsA
Read-onlyIdempotent

Download multiple build artifacts, with base64, text, or streaming output. Returns per-artifact payloads or stream metadata; returns 404 if the build or any path is unknown.

ParametersJSON Schema
NameRequiredDescriptionDefault
buildIdNoBuild ID (internal TeamCity ID)
buildNumberNoHuman-readable build number (requires buildTypeId)
buildTypeIdNoBuild configuration ID (required when using buildNumber)
artifactPathsYesArtifact paths or names to download
encodingNoResponse encoding: 'base64' (default), 'text', or 'stream'base64
maxSizeNoMaximum artifact size (bytes) allowed before aborting
outputDirNoOptional absolute directory to write streamed artifacts; defaults to temp files when streaming

TDQS

A4.2/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already indicate read-only, idempotent, non-destructive behavior. The description adds valuable context: output formats, return structure (per-artifact payloads or stream metadata), and error condition (404 for unknown build/path). No contradictions.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences, no fluff, front-loaded with the core action and key differentiators. Every phrase adds value.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the complexity (7 params, 1 required) and no output schema, the description covers the return type and error condition well. It could mention pagination or size limits but the maxSize parameter handles that. Overall adequate for a download tool with good annotations and schema.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Input schema has 100% coverage with descriptions for all 7 parameters. The description adds minimal extra meaning beyond noting the encoding options in the context of output modes. Schema already conveys the parameter semantics sufficiently.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool downloads multiple build artifacts and specifies output modes (base64, text, stream). It distinguishes from the sibling 'download_build_artifact' (singular) by explicitly mentioning 'multiple'.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides clear context that this is for downloading multiple artifacts, but does not explicitly state when not to use it or point to the singular alternative. The sibling tool name provides implicit guidance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

fetch_build_logA
Read-onlyIdempotent

Fetch a build log. Supports line-based pagination and streaming output.

ParametersJSON Schema
NameRequiredDescriptionDefault
buildIdNoBuild ID (TeamCity internal id)
buildNumberNoHuman build number (e.g., 54). If provided, optionally include buildTypeId to disambiguate.
buildTypeIdNoOptional build type ID to disambiguate buildNumber
pageNo1-based page number
pageSizeNoLines per page (default 500)
startLineNo0-based start line (overrides page)
lineCountNoMax lines to return (overrides pageSize)
tailNoTail mode: return last N lines
encodingNoResponse encoding: 'text' (default) or 'stream'text
outputPathNoOptional absolute path to write streamed logs; defaults to a temp file when streaming

TDQS

A3.6/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true, destructiveHint=false, idempotentHint=true. The description adds behavioral context about pagination and streaming beyond annotations, but does not disclose output format or potential constraints like rate limits.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single concise sentence that effectively communicates the core functionality without any unnecessary words.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the 10 parameters with full schema coverage and no output schema, the description sufficiently covers the tool's purpose and key features. It could mention typical use or output format but is adequate.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100% with detailed parameter descriptions. The description adds marginal value by referencing 'line-based pagination and streaming output', but does not explain parameters beyond what the schema provides.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states 'Fetch a build log' with a specific verb and resource. It does not explicitly differentiate from sibling tools like 'download_build_artifact' but the purpose is unambiguous.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description mentions 'Supports line-based pagination and streaming output', implying use cases for paginated or streaming logs. However, it provides no explicit when-to-use or when-not-to-use guidance or alternatives.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_buildA
Read-onlyIdempotent

Get details of a specific build. Works for queued, running, and finished builds.

ParametersJSON Schema
NameRequiredDescriptionDefault
buildIdNoBuild ID (internal TeamCity ID)
buildNumberNoHuman-readable build number (requires buildTypeId)
buildTypeIdNoBuild configuration ID (required when using buildNumber)

Output Schema

ParametersJSON Schema
NameRequiredDescription
idNo
buildTypeIdNo
numberNo
stateNo
statusNo
statusTextNo
branchNameNo
hrefNo
webUrlNo

TDQS

A3.9/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true and destructiveHint=false. The description adds useful context that the tool works for all build states (queued, running, finished), which is beyond the annotations. No contradiction.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two concise sentences, front-loaded with the key purpose. No unnecessary words.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The description is complete for a simple retrieval tool. An output schema exists, so return values are documented elsewhere. The description covers purpose and scope adequately.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the input schema already explains the parameters fully. The description does not add additional semantics beyond what is in the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb 'Get', the resource 'details of a specific build', and adds scope ('Works for queued, running, and finished builds'). This distinguishes it from siblings like get_build_status or get_build_results.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description lacks guidance on when to use this tool over alternatives such as get_build_status or list_builds. It only clarifies the build states it covers, but does not compare to sibling tools.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_build_configB
Read-onlyIdempotent

Get details of a build configuration.

ParametersJSON Schema
NameRequiredDescriptionDefault
buildTypeIdYesBuild type ID

Output Schema

ParametersJSON Schema
NameRequiredDescription
idNo
nameNo
projectIdNo
projectNameNo
hrefNo
webUrlNo
pausedNo
descriptionNo

TDQS

B3.2/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already indicate readOnlyHint=true, destructiveHint=false, idempotentHint=true, and openWorldHint=true, which fully inform the agent of safety and idempotency. The description adds no additional behavioral context, such as access requirements or response format, but does not contradict annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is very concise at 8 words, with no wasted content. It is front-loaded with the core purpose, though it could be slightly more structured.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the complexity of having many sibling tools and an output schema, the description could be more specific about what 'details' includes. The output schema covers return values, so it is adequate but not above average.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema has 100% description coverage for the single parameter 'buildTypeId', so the schema fully documents its meaning. The description does not add further semantics beyond the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool retrieves details of a build configuration, using a specific verb and resource. However, it does not distinguish itself from sibling tools like get_build, get_project, etc., which also retrieve details of their respective entities.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

There is no guidance on when to use this tool versus alternatives such as get_build or list_build_configs. The description does not provide any usage context or exclusions.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_build_resultsA
Read-onlyIdempotent

Get detailed results of a build. Optionally includes tests, artifacts, changes, statistics, and dependencies.

ParametersJSON Schema
NameRequiredDescriptionDefault
buildIdNoBuild ID
buildTypeIdNoBuild configuration ID when resolving by number
buildNumberNoBuild number when buildId is not available
includeArtifactsNoInclude artifacts listing and metadata
includeStatisticsNoInclude build statistics
includeChangesNoInclude VCS changes
includeDependenciesNoInclude dependency builds
artifactFilterNoFilter artifacts by name/path pattern
maxArtifactSizeNoMax artifact content size (bytes) when inlining
artifactEncodingNoEncoding mode for artifacts when includeArtifacts is truebase64

Output Schema

ParametersJSON Schema
NameRequiredDescription
buildYes
artifactsNo
statisticsNo
changesNo
dependenciesNo

TDQS

A4.2/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnly, idempotent, and non-destructive behavior; the description adds context about the optional inclusion of various data categories, which is useful but does not contradict annotations. It does not discuss rate limits or performance, but given the annotation coverage, the bar is lower.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, complete sentence with no wasted words. It efficiently communicates the core action and the possibility of including various result components.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the presence of an output schema (not needing return description), and 100% schema coverage, the description sufficiently covers the tool's purpose. It could be slightly more explicit about how build identification parameters relate, but the schema handles that. Overall, adequate for the complexity.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so the baseline is 3. The description does not add meaning beyond the schema's parameter descriptions; the optional includes are already detailed in the schema. No additional context is provided for parameter semantics.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool retrieves detailed build results, with specific optional components listed (tests, artifacts, changes, statistics, dependencies). This distinguishes it from siblings like get_build or get_build_status, which likely provide more basic or status-only data.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage when detailed results with optional includes are needed, but does not explicitly contrast with simpler alternatives like get_build or get_build_status. The phrase 'optionally includes' gives context for when to use this over more specific tools, but no direct exclusions or alternative names are mentioned.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_build_statusB
Read-onlyIdempotent

Get build status. Optionally includes test and problem summaries plus queue context.

ParametersJSON Schema
NameRequiredDescriptionDefault
buildIdNoBuild ID
buildNumberNoHuman build number (requires buildTypeId when provided)
buildTypeIdNoBuild configuration identifier (required when using buildNumber)
includeTestsNoInclude test summary
includeProblemsNoInclude build problems
includeQueueTotalsNoInclude total queued count (extra API call when queued)
includeQueueReasonNoInclude waitReason for the queued item (extra API call when queued)

Output Schema

ParametersJSON Schema
NameRequiredDescription
buildIdYes
buildNumberNo
buildTypeIdNo
stateYes
statusNo
statusTextNo
percentageCompleteYes
currentStageTextNo
branchNameNo
webUrlNo
queuedDateNo
startDateNo
finishDateNo
elapsedSecondsNo
estimatedTotalSecondsNo
estimatedStartTimeNo
queuePositionNo
waitReasonNo
failureReasonNo
canceledByNo
canceledDateNo
totalQueuedNo
canMoveToTopNo
testSummaryNo
problemsNo

TDQS

B3.3/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already provide readOnlyHint and idempotentHint, so the description adds minimal behavioral info. It mentions optional summaries and queue context, which is consistent with annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Single sentence, no fluff, but could be expanded slightly to improve clarity without adding verbosity.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With rich schema and output schema, the description suffices for the core function. However, it lacks usage differentiation from sibling tools, which is a gap in context.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% with detailed parameter descriptions. The description adds value by grouping boolean flags into 'test and problem summaries plus queue context', providing a higher-level understanding.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states 'Get build status' as the main action, and mentions optional summaries and queue context. However, it does not distinguish this tool from sibling 'get_build', which may cause confusion.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance on when to use this tool versus alternatives like 'get_build' or 'get_build_results'. The agent is left to guess based on name alone.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_mcp_modeA
Read-onlyIdempotent

Get the current MCP mode. Dev mode is read-only; full mode enables all operations.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.7/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint, destructiveHint, idempotentHint. The description adds valuable context about what the modes mean (dev is read-only, full enables all operations), beyond the annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences, no wasted words, and front-loaded with the core purpose.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given zero parameters and no output schema, the description fully conveys purpose and behavioral context. No gaps remain.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

No parameters exist, baseline 4. Description does not need to add parameter semantics as schema coverage is 100%.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool retrieves the current MCP mode and explains the two possible values (dev vs full), distinguishing it from sibling tool set_mcp_mode.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implicitly guides usage by contrasting dev and full modes, but does not explicitly state when to use this tool versus alternatives like set_mcp_mode.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_projectB
Read-onlyIdempotent

Get details of a specific project.

ParametersJSON Schema
NameRequiredDescriptionDefault
projectIdYesProject ID

Output Schema

ParametersJSON Schema
NameRequiredDescription
idNo
nameNo
parentProjectIdNo
hrefNo
webUrlNo
archivedNo
descriptionNo

TDQS

B3.4/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint, destructiveHint, idempotentHint, and openWorldHint. The description adds no new behavioral information (e.g., permissions, rate limits, response format) beyond the literal purpose.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Single, concise sentence with no unnecessary words. Every word contributes to clarity.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's simplicity (1 parameter, output schema exists), the description is adequate. It could mention that it returns full project details, but output schema covers that.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% and the only parameter (projectId) has a description in the schema. The tool description adds no extra semantic context, meeting the baseline for complete schema coverage.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('Get'), resource ('project'), and specificity ('a specific project'), distinguishing it from sibling tools like list_projects that return multiple items.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance on when to use this tool versus siblings such as list_projects or list_project_hierarchy. No mention of prerequisites or exclusions.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_server_infoA
Read-onlyIdempotent

Get TeamCity server info including version, build number, and state.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.3/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already indicate it is read-only, non-destructive, and idempotent. The description adds specific return content (version, build number, state), which is useful context beyond the annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Single sentence, no redundant words, front-loaded with action and resource.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a no-parameter, read-only info tool, the description provides sufficient detail about output fields. No additional context needed.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

No parameters in schema; baseline score of 4 applies. Description adds no parameter details, but none are needed.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action (Get) and resource (TeamCity server info) and specifies the included fields (version, build number, state). This distinguishes it from sibling tools that focus on builds, projects, etc.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No explicit guidance on when to use this tool versus alternatives. The purpose is clear, but no conditions or exclusions are given.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_test_detailsC
Read-onlyIdempotent

Get detailed information about test failures.

ParametersJSON Schema
NameRequiredDescriptionDefault
buildIdNoBuild ID (internal TeamCity ID)
buildNumberNoHuman-readable build number (requires buildTypeId)
buildTypeIdNoBuild configuration ID (required when using buildNumber)
testNameIdNoTest name ID (optional)

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The description does not add behavioral information beyond what annotations already provide (readOnlyHint=true, idempotentHint=true). Annotations cover safety but the description omits details like error behavior, rate limits, or what happens if the build/test is not found. With no extra context, transparency is limited.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is extremely concise (5 words). It is front-loaded and wastes no words. However, given the tool's complexity (4 parameters), slightly more detail would be helpful, but the current brevity does not detract from clarity.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool has 4 parameters and no output schema, yet the description does not explain return values, the relationship between buildId and buildNumber, or how testNameId filters details. Context signals show many sibling tools, but the description alone is insufficient for an agent to fully understand the tool's usage without schema inspection.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the baseline is 3. The description does not elaborate on parameters (e.g., buildId vs. buildNumber), but the schema already documents all four parameters adequately. Description adds no param meaning beyond schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description 'Get detailed information about test failures' uses a specific verb ('Get') and resource ('detailed information about test failures'). It is clear but does not explicitly differentiate from the sibling 'list_test_failures', which likely lists failures. Purpose is unambiguous but lacks distinction from related tools.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives like 'list_test_failures' or 'get_build_results'. There is no mention of prerequisites, context, or exclusions, leaving the agent to infer usage from the name alone.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

list_branchesA
Read-onlyIdempotent

List branches for a project or build configuration.

ParametersJSON Schema
NameRequiredDescriptionDefault
projectIdNoProject ID
buildTypeIdNoBuild type ID

TDQS

A3.6/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The description adds no behavioral context beyond what annotations already provide (readOnlyHint, idempotentHint). With annotations covering safety and side effects, the description is adequate but does not explain potential nuances like pagination or ordering.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, concise sentence that front-loads the action. Every word is meaningful, with no redundancy or filler.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple read-only tool with well-documented parameters and annotations, the description is sufficiently complete. It covers the core purpose, though it could briefly mention what is returned (e.g., branch names).

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so parameters are already documented. The description does not add extra meaning or clarify usage beyond the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb 'List' and the resource 'branches', with scope 'for a project or build configuration'. It is unambiguous and distinct from sibling list tools due to the specific resource.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives. It lacks exclusions, prerequisites, or comparisons to other list tools like list_builds or list_projects.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

list_build_artifactsA
Read-onlyIdempotent

List artifact files and directories for a build, optionally browsing into subdirectories. Returns an array of artifact entries with name, path, size, and isDirectory flag.

ParametersJSON Schema
NameRequiredDescriptionDefault
buildIdNoBuild ID (internal TeamCity ID)
buildNumberNoHuman-readable build number (requires buildTypeId)
buildTypeIdNoBuild configuration ID (required when using buildNumber)
pathNoSub-path to list (e.g. "okd" or "okd/subdir"). Omit to list top-level artifacts.
includeNestedNoRecursively include all files within subdirectories (default: false)
nameFilterNoGlob pattern to filter artifacts by name (e.g. "*.yaml")
pathFilterNoGlob pattern to filter artifacts by full path
extensionNoFilter by file extension (e.g. "yaml", ".yaml")

TDQS

A3.9/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already indicate safe read-only, idempotent behavior. The description adds concrete behavioral details: browsing into subdirectories, return format (name, path, size, isDirectory), and filtering options (includeNested, nameFilter, pathFilter, extension). It does not contradict annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two sentences long, directly stating purpose and return structure. No waste, front-loaded with core information.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

No output schema is provided, but the description specifies the return format. With 8 parameters, the description could clarify dependencies (e.g., buildId vs buildNumber+buildTypeId) or limitations (e.g., pagination). It is minimally adequate.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the baseline is 3. The description does not explain parameters beyond the schema, except indirectly mentioning the 'path' parameter for browsing. It does not add significant meaning beyond the schema definitions.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb 'list' and the resource 'artifact files and directories for a build'. It distinguishes from siblings like download_build_artifact by focusing on listing rather than downloading. The mention of optional subdirectory browsing further clarifies the scope.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage for listing artifacts and browsing subdirectories but does not explicitly tell when to use this tool versus alternatives like download_build_artifact or other list tools. With many siblings, explicit when-to-use / when-not-to-use guidance would be beneficial.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

list_build_configsB
Read-onlyIdempotent

List build configurations. Supports pagination and locator filtering.

ParametersJSON Schema
NameRequiredDescriptionDefault
locatorNoOptional build type locator to filter
projectIdNoFilter by project ID
pageSizeNoItems per page (default 100)
maxPagesNoMax pages to fetch (when all=true)
allNoFetch all pages up to maxPages
fieldsNoOptional fields selector for server-side projection

Output Schema

ParametersJSON Schema
NameRequiredDescription
itemsYes
paginationYesPagination metadata describing which slice was returned.

TDQS

B3.4/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already indicate read-only, non-destructive, idempotent behavior. The description adds that it supports pagination and filtering, which is useful but minimal. No additional behavioral traits like rate limits or response format are disclosed.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two concise sentences that front-load the purpose and include key capabilities. No wasted words.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the output schema exists (not shown), the description covers the main aspects: listing, pagination, filtering. It lacks details on the response structure or what a build config is, but overall is sufficient for a list tool.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so baseline is 3. The description mentions pagination and locator filtering, which aligns with parameters, but adds no new meaning beyond what the schema provides.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states it lists build configurations and mentions pagination and locator filtering. However, it does not differentiate itself from sibling tools like list_builds, get_build_config, etc., which have similar purposes.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance is provided on when to use this tool versus alternatives like get_build_config or list_builds. The description only states what it does, not when it is appropriate.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

list_buildsA
Read-onlyIdempotent

List TeamCity builds. Supports pagination and locator filtering.

ParametersJSON Schema
NameRequiredDescriptionDefault
locatorNoOptional build locator to filter builds
projectIdNoFilter by project ID
buildTypeIdNoFilter by build type ID
branchNoFilter by branch (logical or VCS name)
statusNoFilter by status
countNoDeprecated: use pageSize
pageSizeNoItems per page (default 100)
maxPagesNoMax pages to fetch (when all=true)
allNoFetch all pages up to maxPages
fieldsNoOptional fields selector for server-side projection

Output Schema

ParametersJSON Schema
NameRequiredDescription
itemsYes
paginationYesPagination metadata describing which slice was returned.

TDQS

A3.6/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnly, idempotent, and non-destructive. The description adds behavioral insight: supports pagination and locator filtering, which is not evident from annotations alone. Does not conflict with annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two short sentences with no unnecessary words. Front-loaded with the main purpose. Every sentence is earned.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the output schema exists and schema covers all parameters, the description adequately highlights key behaviors (pagination, locator filtering). It is minimal but complete for the tool's complexity.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so the description's contribution is limited. It adds general context for pagination and locator filtering but does not explain parameter semantics beyond what the schema already provides.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

Clearly states 'List TeamCity builds', specifying verb and resource. The mention of pagination and locator filtering adds context. However, it does not explicitly differentiate from sibling list tools like list_build_configs or list_queued_builds.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance on when to use this tool versus alternatives. No mention of prerequisites, when-not-to-use, or specific scenarios where other tools are preferred.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

list_changesA
Read-onlyIdempotent

List VCS changes. Supports pagination.

ParametersJSON Schema
NameRequiredDescriptionDefault
locatorNoOptional change locator to filter results
projectIdNoFilter by project ID via locator helper
buildIdNoFilter by build ID via locator helper
pageSizeNoItems per page (default 100)
maxPagesNoMax pages to fetch (when all=true)
allNoFetch all pages up to maxPages
fieldsNoOptional fields selector for server-side projection

TDQS

A3.5/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnly, non-destructive, idempotent, and open world hints. The description adds 'Supports pagination' which is useful but not covered by annotations. No further behavioral context (e.g., rate limits, caching). Adequate given strong annotation coverage.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences: first states core purpose, second notes key feature (pagination). No unnecessary words. Front-loaded and efficient.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

No output schema, but for a simple list tool the description is fairly complete given the rich annotations. However, it lacks explanation of return structure or filtering semantics beyond what the schema provides. Could include typical usage patterns.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so all parameters are already described in the input schema. The description does not add additional meaning beyond the schema. Baseline of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description 'List VCS changes' clearly states the verb and resource. The name list_changes directly matches. Among many sibling list tools, this differentiates by focusing on VCS changes.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance on when to use this tool versus alternatives like list_builds or list_projects. Only 'Supports pagination' is mentioned, but no context on typical use cases or exclusions.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

list_investigationsB
Read-onlyIdempotent

List open investigations. Supports pagination.

ParametersJSON Schema
NameRequiredDescriptionDefault
locatorNoOptional investigation locator to filter results
projectIdNoFilter by project ID via locator helper
buildTypeIdNoFilter by build configuration ID via locator helper
assigneeUsernameNoFilter by responsible user username via locator helper
pageSizeNoItems per page (default 100)
maxPagesNoMax pages to fetch (when all=true)
allNoFetch all pages up to maxPages
fieldsNoOptional fields selector for server-side projection

TDQS

B3.2/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already indicate it is read-only, non-destructive, idempotent, and open-world. The description adds minimal behavioral context beyond 'lists open investigations' and pagination support. No contradictions with annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Extremely concise two-sentence description, front-loaded with the main purpose. Every word is necessary and no fluff.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given 8 parameters and no output schema, the description is too brief. It omits what the return format is, how the locator filtering works, and the overall response structure. The schema covers details, but description should provide a complete overview.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the baseline is 3. The tool description adds some value by explicitly mentioning pagination support, but does not elaborate on parameter meaning beyond what the schema provides.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action (list) and resource (open investigations), and mentions pagination support. While it distinguishes from siblings that list other resources (e.g., list_builds), it does not explicitly differentiate from other list tools on the server.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance on when to use this tool versus alternatives (e.g., list_problems, list_muted_tests). No context about when it is appropriate to use or not use.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

list_muted_testsB
Read-onlyIdempotent

List muted tests. Supports pagination.

ParametersJSON Schema
NameRequiredDescriptionDefault
locatorNoOptional mute locator to filter results
projectIdNoFilter by project ID via locator helper
buildTypeIdNoFilter by build configuration ID via locator helper
testNameIdNoFilter by test name ID via locator helper
pageSizeNoItems per page (default 100)
maxPagesNoMax pages to fetch (when all=true)
allNoFetch all pages up to maxPages
fieldsNoOptional fields selector for server-side projection

TDQS

B3.2/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already indicate read-only, non-destructive, and idempotent behavior. The description adds 'Supports pagination', which is a useful behavioral detail, but does not disclose other traits like rate limits or data scope.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is very short (two sentences) and front-loaded with the purpose. It is appropriately sized and contains no redundant content.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the 8 parameters and no output schema, the description is minimal. It does not explain the concept of 'muted' tests or the broader context of the mute lifecycle, but the schema and annotations cover basic usage adequately.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% with each parameter having a description, so the baseline is 3. The description does not provide additional semantic context beyond the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action and resource: 'List muted tests'. It is specific but does not explicitly differentiate from sibling tools like list_investigations or list_test_failures, which are conceptually related but distinct.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance is provided on when to use this tool versus alternatives. The description lacks any contextual cues about preferred scenarios or exclusions.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

list_parametersA
Read-onlyIdempotent

List parameters for a build configuration.

ParametersJSON Schema
NameRequiredDescriptionDefault
buildTypeIdYesBuild type ID

TDQS

A3.5/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true and idempotentHint=true, so the description does not contradict. However, it adds no extra behavioral context such as return format or parameter details beyond the schema.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Single, well-structured sentence that is front-loaded and contains no filler words. Every word earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the simple nature of the tool (1 param, no output schema), the description is functional but lacks any details on return structure or additional context, which could aid an agent without output schema.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

With 100% schema coverage, the schema already documents the parameter. The description adds no additional meaning beyond what the schema provides.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action (List) and resource (parameters) with a specific context (for a build configuration). It differentiates from sibling list tools like list_branches or list_build_artifacts.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance on when to use this tool vs alternatives, no prerequisites or conditions stated. The description only specifies the basic operation without context for selection.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

list_problem_occurrencesB
Read-onlyIdempotent

List build problem occurrences. Supports pagination.

ParametersJSON Schema
NameRequiredDescriptionDefault
locatorNoOptional problem occurrence locator to filter results
buildIdNoFilter by build ID via locator helper
problemIdNoFilter by problem ID via locator helper
pageSizeNoItems per page (default 100)
maxPagesNoMax pages to fetch (when all=true)
allNoFetch all pages up to maxPages
fieldsNoOptional fields selector for server-side projection

TDQS

B3.1/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint. The description adds no extra behavioral context beyond stating pagination support, which is already evident from parameters.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two concise sentences with no wasted words. Front-loaded with the main action, but could benefit from more detail.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With 7 parameters, no output schema, and no explanation of return values or pagination mechanics, the description is insufficient for an agent to fully understand the tool's behavior.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so baseline is 3. The description provides no additional meaning for parameters; it only mentions pagination generically.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states it lists build problem occurrences and supports pagination. However, it does not differentiate from the sibling tool 'list_problems', which likely has similar purpose.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance on when to use this tool vs alternatives like list_problems or list_builds. The description merely states the function without usage context.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

list_problemsB
Read-onlyIdempotent

List build problems. Supports pagination.

ParametersJSON Schema
NameRequiredDescriptionDefault
locatorNoOptional problem locator to filter results
projectIdNoFilter by project ID via locator helper
buildIdNoFilter by build ID via locator helper
pageSizeNoItems per page (default 100)
maxPagesNoMax pages to fetch (when all=true)
allNoFetch all pages up to maxPages
fieldsNoOptional fields selector for server-side projection

TDQS

B3.2/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true, destructiveHint=false, idempotentHint=true, openWorldHint=true, so the description's mention of pagination adds some value. However, it does not elaborate on filtering behavior or response characteristics beyond what is in the schema.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is very concise, consisting of two short sentences. It is efficient but lacks structure; a slightly more detailed breakdown would improve clarity without sacrificing brevity.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the high number of parameters and the richness of annotations, the description is adequate but not thorough. It covers scaling (pagination) but misses explanation of filtering parameters and relationship to sibling tools. The schema fills many gaps, but the description could better tie into the overall tool use case.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so all parameters are documented in the input schema. The description does not add additional meaning beyond the schema, meeting the baseline for high coverage.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states 'List build problems' which clearly identifies the verb and resource. It also mentions pagination. However, it does not differentiate from sibling tools like analyze_build_problems or list_problem_occurrences, so it could be more specific about scope.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance is provided on when to use this tool versus alternatives such as analyze_build_problems or list_problem_occurrences. The description simply states what it does without context for selection.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

list_project_hierarchyA
Read-onlyIdempotent

List project hierarchy showing parent-child relationships.

ParametersJSON Schema
NameRequiredDescriptionDefault
rootProjectIdNoRoot project ID (defaults to _Root)

TDQS

A3.8/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations fully declare safe, read-only, idempotent behavior. The description adds only that it shows parent-child relationships, which is minor additional context. No contradictions or extra behavioral details beyond annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Single sentence, no unnecessary words, front-loaded with verb and resource. Highly concise and structurally sound.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple read-only tool with one optional parameter, the description is largely complete. However, no output schema is provided, and the description does not specify return format (e.g., flat list or hierarchy tree), which would be helpful for an agent.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema has 100% coverage with description for rootProjectId. The tool description does not add any information beyond what the schema already provides, resulting in baseline score.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states 'List project hierarchy showing parent-child relationships,' which specifies the verb (list), resource (project hierarchy), and key behavior. This distinguishes it from siblings like list_projects, which likely returns a flat list.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage for hierarchy needs but does not explicitly state when to use this tool versus alternatives like list_projects or get_project. No exclusions or when-not advice is provided.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

list_projectsA
Read-onlyIdempotent

List TeamCity projects. Supports pagination and locator filtering.

ParametersJSON Schema
NameRequiredDescriptionDefault
locatorNoOptional locator to filter projects
parentProjectIdNoFilter by parent project ID
pageSizeNoItems per page (default 100)
maxPagesNoMax pages to fetch (when all=true)
allNoFetch all pages up to maxPages
fieldsNoOptional fields selector for server-side projection

Output Schema

ParametersJSON Schema
NameRequiredDescription
itemsYes
paginationYesPagination metadata describing which slice was returned.

TDQS

A4.2/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The description adds useful behavioral context beyond the annotations, such as supporting pagination and locator filtering. The annotations already declare the tool as read-only, non-destructive, idempotent, and open-world, and the description is consistent with those.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is extremely concise with two sentences that front-load the core purpose and key features. Every word adds value, with no redundancy or unnecessary details.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given that the tool has an output schema, rich annotations, and a fully described input schema, the description provides adequate additional context about pagination and filtering. It could potentially mention that it returns a list of projects, but that is implicit from the name and purpose.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Since the input schema has 100% description coverage, the baseline is 3. The description mentions locator filtering, which aligns with the locator parameter, but it does not add significant meaning beyond what the schema already provides for each parameter.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states 'List TeamCity projects' with a specific verb and resource. The mention of pagination and locator filtering adds specificity, and the tool is easily distinguished from siblings like get_project or list_builds.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description indicates support for pagination and locator filtering, which gives context on when to use the tool (when you need to paginate or filter). However, it does not explicitly state when not to use it or suggest alternatives like get_project for a single project.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

list_queued_buildsA
Read-onlyIdempotent

List queued builds. Supports TeamCity queue locator filtering and pagination.

ParametersJSON Schema
NameRequiredDescriptionDefault
locatorNoQueue locator filter (e.g., project:(id:MyProj))
pageSizeNoItems per page (default 100)
maxPagesNoMax pages to fetch (when all=true)
allNoFetch all pages up to maxPages
fieldsNoOptional fields selector for server-side projection

TDQS

A3.7/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already indicate read-only, non-destructive, and idempotent behavior. The description adds that it specifically handles queued builds and supports filtering/pagination but does not disclose additional behavioral traits like error handling or rate limits.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two concise sentences that front-load the core action. Every word is necessary, with no extraneous information.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a tool with 5 parameters and no output schema, the description is adequate but minimal. It covers the main purpose and key features but lacks details on return format, error conditions, or relation to other list tools.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so the input schema already provides descriptions for all 5 parameters. The description briefly reiterates the locator and pagination features but does not add significant new meaning beyond what is in the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's function: listing queued builds. It specifies support for TeamCity queue locator filtering and pagination, which distinguishes it from siblings like 'list_builds' (likely for non-queued builds) and 'cancel_queued_build'.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description mentions filtering and pagination but does not provide explicit guidance on when to use this tool versus alternatives. No exclusions or context for when not to use are given.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

list_test_failuresA
Read-onlyIdempotent

List test failures for a build. Supports pagination.

ParametersJSON Schema
NameRequiredDescriptionDefault
buildIdNoBuild ID (internal TeamCity ID)
buildNumberNoHuman-readable build number (requires buildTypeId)
buildTypeIdNoBuild configuration ID (required when using buildNumber)
pageSizeNoItems per page (default 100)
maxPagesNoMax pages to fetch (when all=true)
allNoFetch all pages up to maxPages
fieldsNoOptional fields selector for server-side projection

TDQS

A3.7/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true, destructiveHint=false, idempotentHint=true, and openWorldHint=true. The description adds behavioral context by mentioning pagination support and the ability to fetch multiple pages, which goes beyond annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is concise at only two sentences, with the purpose front-loaded. Every word adds value, and there is no redundant information.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool has 7 parameters, no required fields, and no output schema, the description is somewhat incomplete. It omits the alternative identification methods (buildId vs buildNumber+buildTypeId) and does not describe the return format of test failures, which would aid agent understanding.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so each parameter is already documented. The description adds minimal value by summarizing pagination parameters, but does not explain relationships like buildId vs buildNumber/buildTypeId or the fields parameter beyond the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states 'List test failures for a build' which is a specific verb+resource combination. It distinguishes from siblings like list_problems or list_builds by targeting test failures specifically.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description does not provide guidance on when to use this tool versus alternatives such as get_test_details, list_muted_tests, or list_problem_occurrences. No exclusions or context is given for selecting this tool.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

pingA
Read-onlyIdempotent

Test MCP server connectivity. Returns a confirmation echo and optional message.

ParametersJSON Schema
NameRequiredDescriptionDefault
messageNoOptional message to echo back

TDQS

A4.1/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true, destructiveHint=false, idempotentHint=true. The description adds that it returns a confirmation echo and optional message, which is consistent and adds useful context beyond annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two concise sentences with no waste. It is front-loaded and efficiently communicates the tool's purpose and behavior.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple ping tool with no output schema, the description is fully adequate. It covers the purpose, return value, and parameter (message is optional). No missing information.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the description adds minimal extra meaning. Baseline of 3 is appropriate as the description does not introduce new information beyond the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states 'Test MCP server connectivity. Returns a confirmation echo and optional message.', which is a specific verb+resource. It is distinct from sibling tools which are all related to builds, projects, and tests.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage for checking connectivity, but does not explicitly state when to use vs alternatives. However, given the clear purpose and distinct sibling tools, the context is clear enough.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

set_mcp_modeA
Idempotent

Switch MCP mode at runtime. Returns previous and current modes with the updated tool count; idempotent and notifies clients of the list change.

ParametersJSON Schema
NameRequiredDescriptionDefault
modeYesTarget mode: dev (read-only) or full (all operations)

TDQS

A3.8/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already provide idempotentHint=true, and the description reinforces idempotence while adding behavioral details: returns previous/current modes and notifies clients of list change. No contradictions.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences, front-loaded with purpose, no fluff. Every sentence adds value.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Despite no output schema, the description adequately covers purpose, return values, idempotence, and notification. For a simple tool, it is nearly complete; only missing exact return shape.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% with parameter descriptions. The description does not add additional semantics beyond stating 'target mode', so baseline 3 applies.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states 'Switch MCP mode at runtime', specifying both the verb and the resource. It distinguishes itself from the sibling 'get_mcp_mode' by indicating it is the setter, and adds detail about returning previous/current modes.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No explicit guidance on when to use vs not use, no alternatives mentioned. The description only states it is idempotent, implying safe repeated calls, but lacks context about prerequisites or scenarios.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

trigger_buildA

Trigger a new build; runs asynchronously, use wait_for_build to monitor. Returns the queued build id; returns 404 if buildTypeId is unknown.

ParametersJSON Schema
NameRequiredDescriptionDefault
buildTypeIdYesBuild type ID to trigger
branchNameNoBranch to build (optional)
commentNoBuild comment (optional)
propertiesNoOptional build parameters to set when triggering the build

TDQS

A4.3/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Discloses asynchronous execution, queued build ID return, and 404 error for unknown buildTypeId. Adds context beyond annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two dense sentences: action + async hint, then return value and error. No wasted words.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Covers all key aspects: purpose, async behavior, return value, error condition. No gaps given tool complexity.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema covers all 4 parameters with 100% coverage. Description does not add extra semantic details beyond error context for buildTypeId.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Clear verb 'Trigger' and resource 'build', distinguishes from siblings like cancel_build and wait_for_build.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly suggests using wait_for_build for monitoring, providing complementary tool guidance. Does not specify when not to use, but sufficient.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

wait_for_buildA
Read-only

Wait for a build to reach a terminal state (finished, canceled, failed). Long-running; polls until completion or timeout.

ParametersJSON Schema
NameRequiredDescriptionDefault
buildIdNoBuild ID to wait for
buildNumberNoHuman build number (requires buildTypeId)
buildTypeIdNoBuild configuration ID (required with buildNumber)
timeoutNoMax seconds to wait (default 600, max 3600)
pollIntervalNoSeconds between polls (default 15, min 5)
includeTestsNoInclude test summary in result
includeProblemsNoInclude build problems in result

TDQS

A3.9/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Description adds behavioral context beyond annotations: it states 'Long-running; polls until completion or timeout.' Annotations only declare readOnlyHint true, so description fills gap about polling and blocking behavior. No contradiction.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Extremely concise single sentence with clear purpose and behavior. No unnecessary words. Front-loaded with key information.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Description covers core mechanism (polling, timeout) but omits info on result format, required parameter conditions (buildId vs. buildNumber+buildTypeId), and potential side effects. Given 7 parameters and no output schema, more detail could help.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% with descriptions for each parameter. The description does not add parameter-specific semantics beyond the schema, meeting baseline. No extra value for parameters.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool waits for a build to reach a terminal state, with specific verbs and resource. It differentiates from sibling tools like get_build (non-blocking status) and cancel_build (cancelling).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies use when blocking until build completion, but lacks explicit when-not-to-use or alternatives. No guidance on when to prefer this over get_build or other tools.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 32 tool updatesv1.0.2
    • Addedanalyze_build_problems
    • Addedcancel_build
    • Addedcancel_queued_build
    • Addeddownload_build_artifact
    • Addeddownload_build_artifacts
    • Addedfetch_build_log
    • Addedget_build
    • Addedget_build_config
    • Addedget_build_results
    • Addedget_build_status
    • Addedget_mcp_mode
    • Addedget_project
    • Addedget_server_info
    • Addedget_test_details
    • Addedlist_branches
    • Addedlist_build_artifacts
    • Addedlist_build_configs
    • Addedlist_builds
    • Addedlist_changes
    • Addedlist_investigations
    • Addedlist_muted_tests
    • Addedlist_parameters
    • Addedlist_problem_occurrences
    • Addedlist_problems
    • Addedlist_project_hierarchy
    • Addedlist_projects
    • Addedlist_queued_builds
    • Addedlist_test_failures
    • Addedping
    • Addedset_mcp_mode
    • Addedtrigger_build
    • Addedwait_for_build
  2. 27 tool updatesv1.0.1
    • Removedanalyze_build_problems
    • Removedcancel_queued_build
    • Removeddownload_build_artifact
    • Removeddownload_build_artifacts
    • Removedfetch_build_log
    • Removedget_build
    • Removedget_build_config
    • Removedget_build_results
    • Removedget_build_status
    • Removedget_project
    • Removedget_server_info
    • Removedget_test_details
    • Removedlist_branches
    • Removedlist_build_configs
    • Removedlist_builds
    • Removedlist_changes
    • Removedlist_investigations
    • Removedlist_muted_tests
    • Removedlist_parameters
    • Removedlist_problem_occurrences
    • Removedlist_problems
    • Removedlist_project_hierarchy
    • Removedlist_projects
    • Removedlist_queued_builds
    • Removedlist_test_failures
    • Removedping
    • Removedtrigger_build
  3. 22 tool updatesv1.0.0
    • Removedcheck_availability_guard
    • Removedcheck_teamcity_connection
    • Removedcount_compatible_agents_for_build_type
    • Addeddownload_build_artifact
    • Addeddownload_build_artifacts
    • Changedfetch_build_log2 fields changed
      • addedInput schema / properties / encoding
        Added value: +{
        +  "default": "text",
        +  "description": "Response encoding: 'text' (default) or 'stream'",
        +  "enum": [
        +    "text",
        +    "stream"
        +  ],
        +  "type": "string"
        +}
      • addedInput schema / properties / outputPath
        Added value: +{
        +  "description": "Optional absolute path to write streamed logs; defaults to a temp file when streaming",
        +  "type": "string"
        +}
    • Removedget_agent_enabled_info
    • Changedget_build_results4 fields changed
      • addedInput schema / properties / artifactEncoding
        Added value: +{
        +  "default": "base64",
        +  "description": "Encoding mode for artifacts when includeArtifacts is true",
        +  "enum": [
        +    "base64",
        +    "stream"
        +  ],
        +  "type": "string"
        +}
      • addedInput schema / properties / buildNumber
        Added value: +{
        +  "description": "Build number when buildId is not available",
        +  "oneOf": [
        +    {
        +      "description": "Build number as TeamCity displays it",
        +      "type": "string"
        +    },
        +    {
        +      "description": "Numeric build number",
        +      "type": "number"
        +    }
        +  ]
        +}
      • addedInput schema / properties / buildTypeId
        Added value: +{
        +  "description": "Build configuration ID when resolving by number",
        +  "type": "string"
        +}
      • removedInput schema / required
        Removed value: -[
        -  "buildId"
        -]
    • Changedget_build_status3 fields changed
      • addedInput schema / properties / buildNumber
        Added value: +{
        +  "description": "Human build number (requires buildTypeId when provided)",
        +  "type": "string"
        +}
      • addedInput schema / properties / buildTypeId
        Added value: +{
        +  "description": "Build configuration identifier (required when using buildNumber)",
        +  "type": "string"
        +}
      • removedInput schema / required
        Removed value: -[
        -  "buildId"
        -]
    • Removedget_compatible_agents_for_build_type
    • Removedget_compatible_agents_for_queued_build
    • Removedget_compatible_build_types_for_agent
    • Removedget_incompatible_build_types_for_agent
    • Removedget_vcs_root
    • Removedget_versioned_settings_status
    • Removedlist_agent_pools
    • Removedlist_agents
    • Changedlist_builds1 field changed
      • addedInput schema / properties / branch
        Added value: +{
        +  "description": "Filter by branch (logical or VCS name)",
        +  "type": "string"
        +}
    • Removedlist_roles
    • Removedlist_users
    • Removedlist_vcs_roots
    • Changedtrigger_build1 field changed
      • addedInput schema / properties / properties
        Added value: +{
        +  "additionalProperties": {
        +    "type": "string"
        +  },
        +  "description": "Optional build parameters to set when triggering the build",
        +  "type": "object"
        +}
  4. 40 tool updates
    • First observedanalyze_build_problems
    • First observedcancel_queued_build
    • First observedcheck_availability_guard
    • First observedcheck_teamcity_connection
    • First observedcount_compatible_agents_for_build_type
    • First observedfetch_build_log
    • First observedget_agent_enabled_info
    • First observedget_build
    • First observedget_build_config
    • First observedget_build_results
    • First observedget_build_status
    • First observedget_compatible_agents_for_build_type
    • First observedget_compatible_agents_for_queued_build
    • First observedget_compatible_build_types_for_agent
    • First observedget_incompatible_build_types_for_agent
    • First observedget_project
    • First observedget_server_info
    • First observedget_test_details
    • First observedget_vcs_root
    • First observedget_versioned_settings_status
    • First observedlist_agent_pools
    • First observedlist_agents
    • First observedlist_branches
    • First observedlist_build_configs
    • First observedlist_builds
    • First observedlist_changes
    • First observedlist_investigations
    • First observedlist_muted_tests
    • First observedlist_parameters
    • First observedlist_problem_occurrences
    • First observedlist_problems
    • First observedlist_project_hierarchy
    • First observedlist_projects
    • First observedlist_queued_builds
    • First observedlist_roles
    • First observedlist_test_failures
    • First observedlist_users
    • First observedlist_vcs_roots
    • First observedping
    • First observedtrigger_build

TDQS

A3.5/5.0
Disambiguation4/5

Most tools have distinct purposes, but some overlap exists between get_build, get_build_results, and get_build_status, though descriptions help differentiate. cancel_build and cancel_queued_build are clearly separated.

Naming Consistency5/5

All tools follow a consistent verb_noun snake_case pattern (e.g., cancel_build, list_projects, trigger_build). The naming is predictable and easy to navigate.

Tool Count3/5

32 tools is on the high side, but each covers a specific aspect of CI operations (builds, projects, tests, artifacts). It's borderline heavy but not excessive for the domain complexity.

Completeness3/5

Core build lifecycle is covered (trigger, get, cancel, list, wait). However, there are notable gaps: no tools to create/update projects or build configurations, and no delete operations for builds or other entities.

Maintenance

ActivityStale
ResponsivenessSyncing

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    D
    maintenance
    Enables AI assistants to interact with Jenkins CI/CD systems through natural language, providing build management, job monitoring, log analysis, and debugging capabilities.
    MIT
  • A
    license
    A
    quality
    B
    maintenance
    Connects AI coding assistants to TestCollab for managing test cases, plans, and suites directly through natural language. It enables users to create, update, and query testing resources within integrated development environments and AI chat clients.
    17
    193
    4
    MIT
  • A
    license
    B
    quality
    C
    maintenance
    Enables AI assistants to interact with Atlassian Bamboo CI/CD, allowing natural language queries to check build status, fetch logs, trigger builds, and manage deployments.
    27
    126
    4
    MIT

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/Daghis/teamcity-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server