@daghis/teamcity-mcp 2.8.0 → 2.10.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # Changelog
2
2
 
3
+ ## [2.10.0](https://github.com/Daghis/teamcity-mcp/compare/teamcity-mcp-v2.9.0...teamcity-mcp-v2.10.0) (2026-04-26)
4
+
5
+
6
+ ### Features
7
+
8
+ * **tools:** disclose principal return and primary error for mutators ([#484](https://github.com/Daghis/teamcity-mcp/issues/484)) ([0a4d747](https://github.com/Daghis/teamcity-mcp/commit/0a4d7479823f034b04d4623446f71b17b4b30d49))
9
+
10
+ ## [2.9.0](https://github.com/Daghis/teamcity-mcp/compare/teamcity-mcp-v2.8.0...teamcity-mcp-v2.9.0) (2026-04-24)
11
+
12
+
13
+ ### Features
14
+
15
+ * **tools:** unify tool descriptions under a single skeleton ([#479](https://github.com/Daghis/teamcity-mcp/issues/479)) ([19aa256](https://github.com/Daghis/teamcity-mcp/commit/19aa2565f21938639bd9d40f7b1c9cbb524d8e22))
16
+
3
17
  ## [2.8.0](https://github.com/Daghis/teamcity-mcp/compare/teamcity-mcp-v2.7.0...teamcity-mcp-v2.8.0) (2026-04-24)
4
18
 
5
19
 
package/dist/index.js CHANGED
@@ -1205,7 +1205,7 @@ function debug2(message, meta) {
1205
1205
  // package.json
1206
1206
  var package_default = {
1207
1207
  name: "@daghis/teamcity-mcp",
1208
- version: "2.8.0",
1208
+ version: "2.10.0",
1209
1209
  description: "Model Control Protocol server for TeamCity CI/CD integration with AI coding assistants",
1210
1210
  mcpName: "io.github.Daghis/teamcity",
1211
1211
  main: "dist/index.js",
@@ -1278,7 +1278,6 @@ var package_default = {
1278
1278
  zod: "^4.3.5"
1279
1279
  },
1280
1280
  devDependencies: {
1281
- "@codecov/bundle-analyzer": "^2.0.1",
1282
1281
  "@esbuild-plugins/tsconfig-paths": "^0.1.2",
1283
1282
  "@eslint/js": "^10.0.1",
1284
1283
  "@trivago/prettier-plugin-sort-imports": "^6.0.1",
@@ -39230,7 +39229,7 @@ var DEV_TOOLS = [
39230
39229
  idempotentHint: true,
39231
39230
  openWorldHint: true
39232
39231
  },
39233
- description: "Test MCP server connectivity",
39232
+ description: "Test MCP server connectivity. Returns a confirmation echo and optional message.",
39234
39233
  inputSchema: {
39235
39234
  type: "object",
39236
39235
  properties: {
@@ -39258,7 +39257,7 @@ var DEV_TOOLS = [
39258
39257
  idempotentHint: true,
39259
39258
  openWorldHint: false
39260
39259
  },
39261
- description: "Get current MCP mode. Dev mode: read-only tools for safe exploration. Full mode: all tools including admin operations.",
39260
+ description: "Get the current MCP mode. Dev mode is read-only; full mode enables all operations.",
39262
39261
  inputSchema: {
39263
39262
  type: "object",
39264
39263
  properties: {}
@@ -39284,7 +39283,7 @@ var DEV_TOOLS = [
39284
39283
  idempotentHint: true,
39285
39284
  openWorldHint: false
39286
39285
  },
39287
- description: "Switch MCP mode at runtime. Dev mode: safe read-only operations. Full mode: all operations including writes. Clients are notified of tool list changes.",
39286
+ description: "Switch MCP mode at runtime. Returns previous and current modes with the updated tool count; idempotent and notifies clients of the list change.",
39288
39287
  inputSchema: {
39289
39288
  type: "object",
39290
39289
  properties: {
@@ -39333,7 +39332,7 @@ var DEV_TOOLS = [
39333
39332
  idempotentHint: true,
39334
39333
  openWorldHint: true
39335
39334
  },
39336
- description: "List TeamCity projects (supports pagination)",
39335
+ description: "List TeamCity projects. Supports pagination and locator filtering.",
39337
39336
  outputSchema: FIRST_BATCH_OUTPUT_SCHEMAS.list_projects,
39338
39337
  inputSchema: {
39339
39338
  type: "object",
@@ -39407,7 +39406,7 @@ var DEV_TOOLS = [
39407
39406
  idempotentHint: true,
39408
39407
  openWorldHint: true
39409
39408
  },
39410
- description: "Get details of a specific project",
39409
+ description: "Get details of a specific project.",
39411
39410
  outputSchema: FIRST_BATCH_OUTPUT_SCHEMAS.get_project,
39412
39411
  inputSchema: {
39413
39412
  type: "object",
@@ -39439,7 +39438,7 @@ var DEV_TOOLS = [
39439
39438
  idempotentHint: true,
39440
39439
  openWorldHint: true
39441
39440
  },
39442
- description: "List TeamCity builds (supports pagination)",
39441
+ description: "List TeamCity builds. Supports pagination and locator filtering.",
39443
39442
  outputSchema: FIRST_BATCH_OUTPUT_SCHEMAS.list_builds,
39444
39443
  inputSchema: {
39445
39444
  type: "object",
@@ -39534,7 +39533,7 @@ var DEV_TOOLS = [
39534
39533
  idempotentHint: true,
39535
39534
  openWorldHint: true
39536
39535
  },
39537
- description: "Get details of a specific build (works for both queued and running/finished builds)",
39536
+ description: "Get details of a specific build. Works for queued, running, and finished builds.",
39538
39537
  outputSchema: FIRST_BATCH_OUTPUT_SCHEMAS.get_build,
39539
39538
  inputSchema: {
39540
39539
  type: "object",
@@ -39580,7 +39579,7 @@ var DEV_TOOLS = [
39580
39579
  idempotentHint: false,
39581
39580
  openWorldHint: true
39582
39581
  },
39583
- description: "Trigger a new build",
39582
+ description: "Trigger a new build; runs asynchronously, use `wait_for_build` to monitor. Returns the queued build id; returns 404 if buildTypeId is unknown.",
39584
39583
  inputSchema: {
39585
39584
  type: "object",
39586
39585
  properties: {
@@ -39701,7 +39700,7 @@ var DEV_TOOLS = [
39701
39700
  idempotentHint: false,
39702
39701
  openWorldHint: true
39703
39702
  },
39704
- description: "Cancel a queued build by ID",
39703
+ description: "Cancel a queued (not-yet-running) build. Idempotent; returns 404 if the build already started or was cancelled.",
39705
39704
  inputSchema: {
39706
39705
  type: "object",
39707
39706
  properties: {
@@ -39732,7 +39731,7 @@ var DEV_TOOLS = [
39732
39731
  idempotentHint: false,
39733
39732
  openWorldHint: true
39734
39733
  },
39735
- description: "Cancel or stop a running (or queued) build by ID. Supports an optional comment and requeue flag.",
39734
+ description: "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.",
39736
39735
  inputSchema: {
39737
39736
  type: "object",
39738
39737
  properties: {
@@ -39784,7 +39783,7 @@ var DEV_TOOLS = [
39784
39783
  idempotentHint: true,
39785
39784
  openWorldHint: true
39786
39785
  },
39787
- description: "Get build status with optional test/problem and queue context details",
39786
+ description: "Get build status. Optionally includes test and problem summaries plus queue context.",
39788
39787
  outputSchema: FIRST_BATCH_OUTPUT_SCHEMAS.get_build_status,
39789
39788
  inputSchema: {
39790
39789
  type: "object",
@@ -39887,7 +39886,7 @@ var DEV_TOOLS = [
39887
39886
  idempotentHint: false,
39888
39887
  openWorldHint: true
39889
39888
  },
39890
- description: "Wait for a build to complete by polling until it reaches a terminal state (finished, canceled, failed) or timeout",
39889
+ description: "Wait for a build to reach a terminal state (finished, canceled, failed). Long-running; polls until completion or timeout.",
39891
39890
  inputSchema: {
39892
39891
  type: "object",
39893
39892
  properties: {
@@ -39982,7 +39981,7 @@ var DEV_TOOLS = [
39982
39981
  idempotentHint: true,
39983
39982
  openWorldHint: true
39984
39983
  },
39985
- description: "Fetch build log with pagination (by lines)",
39984
+ description: "Fetch a build log. Supports line-based pagination and streaming output.",
39986
39985
  inputSchema: {
39987
39986
  type: "object",
39988
39987
  properties: {
@@ -40242,7 +40241,7 @@ var DEV_TOOLS = [
40242
40241
  idempotentHint: true,
40243
40242
  openWorldHint: true
40244
40243
  },
40245
- description: "List build configurations (supports pagination)",
40244
+ description: "List build configurations. Supports pagination and locator filtering.",
40246
40245
  outputSchema: FIRST_BATCH_OUTPUT_SCHEMAS.list_build_configs,
40247
40246
  inputSchema: {
40248
40247
  type: "object",
@@ -40316,7 +40315,7 @@ var DEV_TOOLS = [
40316
40315
  idempotentHint: true,
40317
40316
  openWorldHint: true
40318
40317
  },
40319
- description: "Get details of a build configuration",
40318
+ description: "Get details of a build configuration.",
40320
40319
  outputSchema: FIRST_BATCH_OUTPUT_SCHEMAS.get_build_config,
40321
40320
  inputSchema: {
40322
40321
  type: "object",
@@ -40348,7 +40347,7 @@ var DEV_TOOLS = [
40348
40347
  idempotentHint: true,
40349
40348
  openWorldHint: true
40350
40349
  },
40351
- description: "List test failures for a build (supports pagination)",
40350
+ description: "List test failures for a build. Supports pagination.",
40352
40351
  inputSchema: {
40353
40352
  type: "object",
40354
40353
  properties: {
@@ -40416,7 +40415,7 @@ var DEV_TOOLS = [
40416
40415
  idempotentHint: true,
40417
40416
  openWorldHint: true
40418
40417
  },
40419
- description: "List VCS roots (supports pagination)",
40418
+ description: "List VCS roots. Supports pagination.",
40420
40419
  inputSchema: {
40421
40420
  type: "object",
40422
40421
  properties: {
@@ -40487,7 +40486,7 @@ var DEV_TOOLS = [
40487
40486
  idempotentHint: true,
40488
40487
  openWorldHint: true
40489
40488
  },
40490
- description: "Get details of a VCS root (including properties)",
40489
+ description: "Get details of a VCS root, including its properties.",
40491
40490
  inputSchema: {
40492
40491
  type: "object",
40493
40492
  properties: {
@@ -40525,7 +40524,7 @@ var DEV_TOOLS = [
40525
40524
  idempotentHint: true,
40526
40525
  openWorldHint: true
40527
40526
  },
40528
- description: "Set a single VCS root property (e.g., branch, branchSpec, url)",
40527
+ description: "Set a single VCS root property such as branch, branchSpec, or url. Returns the updated value; returns 404 if the VCS root or property is unknown.",
40529
40528
  inputSchema: {
40530
40529
  type: "object",
40531
40530
  properties: {
@@ -40569,7 +40568,7 @@ var DEV_TOOLS = [
40569
40568
  idempotentHint: true,
40570
40569
  openWorldHint: true
40571
40570
  },
40572
- description: "Delete a single VCS root property",
40571
+ description: "Delete a single VCS root property. Idempotent; returns 404 if the VCS root is unknown.",
40573
40572
  inputSchema: {
40574
40573
  type: "object",
40575
40574
  properties: {
@@ -40606,7 +40605,7 @@ var DEV_TOOLS = [
40606
40605
  idempotentHint: true,
40607
40606
  openWorldHint: true
40608
40607
  },
40609
- description: "Update common VCS root properties in one call",
40608
+ description: "Update common VCS root properties in a single call. Returns the updated VCS root; returns 404 if the VCS root is unknown.",
40610
40609
  inputSchema: {
40611
40610
  type: "object",
40612
40611
  properties: {
@@ -40682,7 +40681,7 @@ var DEV_TOOLS = [
40682
40681
  idempotentHint: true,
40683
40682
  openWorldHint: true
40684
40683
  },
40685
- description: "List queued builds (supports TeamCity queue locator + pagination)",
40684
+ description: "List queued builds. Supports TeamCity queue locator filtering and pagination.",
40686
40685
  inputSchema: {
40687
40686
  type: "object",
40688
40687
  properties: {
@@ -40756,7 +40755,7 @@ var DEV_TOOLS = [
40756
40755
  idempotentHint: true,
40757
40756
  openWorldHint: true
40758
40757
  },
40759
- description: "Fetch server metrics (CPU/memory/disk/load) if available",
40758
+ description: "Fetch TeamCity server metrics (CPU, memory, disk, load) when available.",
40760
40759
  inputSchema: { type: "object", properties: {} },
40761
40760
  handler: async (_args) => {
40762
40761
  return runTool(
@@ -40780,7 +40779,7 @@ var DEV_TOOLS = [
40780
40779
  idempotentHint: true,
40781
40780
  openWorldHint: true
40782
40781
  },
40783
- description: "Get TeamCity server info (version, build number, state)",
40782
+ description: "Get TeamCity server info including version, build number, and state.",
40784
40783
  inputSchema: { type: "object", properties: {} },
40785
40784
  handler: async (_args) => {
40786
40785
  return runTool(
@@ -40803,7 +40802,7 @@ var DEV_TOOLS = [
40803
40802
  idempotentHint: true,
40804
40803
  openWorldHint: true
40805
40804
  },
40806
- description: "List server health items (warnings/errors) for readiness checks",
40805
+ description: "List server health items (warnings and errors). Useful for readiness checks.",
40807
40806
  inputSchema: {
40808
40807
  type: "object",
40809
40808
  properties: {
@@ -40874,7 +40873,7 @@ var DEV_TOOLS = [
40874
40873
  idempotentHint: true,
40875
40874
  openWorldHint: true
40876
40875
  },
40877
- description: "Get a single server health item by locator",
40876
+ description: "Get a single server health item by locator.",
40878
40877
  inputSchema: {
40879
40878
  type: "object",
40880
40879
  properties: { locator: { type: "string", description: "Health item locator" } },
@@ -40904,7 +40903,7 @@ var DEV_TOOLS = [
40904
40903
  idempotentHint: true,
40905
40904
  openWorldHint: true
40906
40905
  },
40907
- description: "Evaluate server health; returns ok=false if critical health items found (severity ERROR)",
40906
+ description: "Evaluate server health. Returns ok=false when any ERROR-severity items are present.",
40908
40907
  inputSchema: {
40909
40908
  type: "object",
40910
40909
  properties: {
@@ -40942,7 +40941,7 @@ var DEV_TOOLS = [
40942
40941
  idempotentHint: true,
40943
40942
  openWorldHint: true
40944
40943
  },
40945
- description: "Get build types compatible with the specified agent",
40944
+ description: "List build types compatible with the specified agent.",
40946
40945
  inputSchema: {
40947
40946
  type: "object",
40948
40947
  properties: { agentId: { type: "string", description: "Agent ID" } },
@@ -40971,7 +40970,7 @@ var DEV_TOOLS = [
40971
40970
  idempotentHint: true,
40972
40971
  openWorldHint: true
40973
40972
  },
40974
- description: "Get build types incompatible with the specified agent",
40973
+ description: "List build types incompatible with the specified agent.",
40975
40974
  inputSchema: {
40976
40975
  type: "object",
40977
40976
  properties: { agentId: { type: "string", description: "Agent ID" } },
@@ -41000,7 +40999,7 @@ var DEV_TOOLS = [
41000
40999
  idempotentHint: true,
41001
41000
  openWorldHint: true
41002
41001
  },
41003
- description: "Get the enabled/disabled state for an agent, including comment and switch time",
41002
+ description: "Get an agent's enabled/disabled state, including comment and switch time.",
41004
41003
  inputSchema: {
41005
41004
  type: "object",
41006
41005
  properties: { agentId: { type: "string", description: "Agent ID" } },
@@ -41029,7 +41028,7 @@ var DEV_TOOLS = [
41029
41028
  idempotentHint: true,
41030
41029
  openWorldHint: true
41031
41030
  },
41032
- description: "List agents compatible with a build type (optionally filter enabled only)",
41031
+ description: "List agents compatible with a build type. Optionally filters to enabled agents only.",
41033
41032
  inputSchema: {
41034
41033
  type: "object",
41035
41034
  properties: {
@@ -41070,7 +41069,7 @@ var DEV_TOOLS = [
41070
41069
  idempotentHint: true,
41071
41070
  openWorldHint: true
41072
41071
  },
41073
- description: "Return only the count of enabled compatible agents for a build type",
41072
+ description: "Count enabled agents compatible with a build type.",
41074
41073
  inputSchema: {
41075
41074
  type: "object",
41076
41075
  properties: {
@@ -41112,7 +41111,7 @@ var DEV_TOOLS = [
41112
41111
  idempotentHint: true,
41113
41112
  openWorldHint: true
41114
41113
  },
41115
- description: "List agents compatible with a queued/running build by buildId (optionally filter enabled only)",
41114
+ description: "List agents compatible with a queued or running build. Optionally filters to enabled agents only.",
41116
41115
  inputSchema: {
41117
41116
  type: "object",
41118
41117
  properties: {
@@ -41156,7 +41155,7 @@ var DEV_TOOLS = [
41156
41155
  idempotentHint: true,
41157
41156
  openWorldHint: true
41158
41157
  },
41159
- description: "Check connectivity to TeamCity server and basic readiness",
41158
+ description: "Check connectivity and basic readiness of the TeamCity server.",
41160
41159
  inputSchema: { type: "object", properties: {} },
41161
41160
  handler: async (_args) => {
41162
41161
  const adapter = createAdapterFromTeamCityAPI(TeamCityAPI.getInstance());
@@ -41174,7 +41173,7 @@ var DEV_TOOLS = [
41174
41173
  idempotentHint: true,
41175
41174
  openWorldHint: true
41176
41175
  },
41177
- description: "List build agents (supports pagination)",
41176
+ description: "List build agents. Supports pagination.",
41178
41177
  inputSchema: {
41179
41178
  type: "object",
41180
41179
  properties: {
@@ -41241,7 +41240,7 @@ var DEV_TOOLS = [
41241
41240
  idempotentHint: true,
41242
41241
  openWorldHint: true
41243
41242
  },
41244
- description: "List agent pools (supports pagination)",
41243
+ description: "List agent pools. Supports pagination.",
41245
41244
  inputSchema: {
41246
41245
  type: "object",
41247
41246
  properties: {
@@ -41310,7 +41309,7 @@ var DEV_TOOLS = [
41310
41309
  idempotentHint: true,
41311
41310
  openWorldHint: true
41312
41311
  },
41313
- description: "Get detailed results of a build including tests, artifacts, changes, and statistics",
41312
+ description: "Get detailed results of a build. Optionally includes tests, artifacts, changes, statistics, and dependencies.",
41314
41313
  outputSchema: FIRST_BATCH_OUTPUT_SCHEMAS.get_build_results,
41315
41314
  inputSchema: {
41316
41315
  type: "object",
@@ -41433,7 +41432,7 @@ var DEV_TOOLS = [
41433
41432
  idempotentHint: false,
41434
41433
  openWorldHint: true
41435
41434
  },
41436
- description: "Download a single artifact with optional streaming output",
41435
+ description: "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.",
41437
41436
  inputSchema: {
41438
41437
  type: "object",
41439
41438
  properties: {
@@ -41501,7 +41500,7 @@ var DEV_TOOLS = [
41501
41500
  idempotentHint: false,
41502
41501
  openWorldHint: true
41503
41502
  },
41504
- description: "Download multiple artifacts with optional streaming output",
41503
+ description: "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.",
41505
41504
  inputSchema: {
41506
41505
  type: "object",
41507
41506
  properties: {
@@ -41669,7 +41668,7 @@ var DEV_TOOLS = [
41669
41668
  idempotentHint: true,
41670
41669
  openWorldHint: true
41671
41670
  },
41672
- description: "Get detailed information about test failures",
41671
+ description: "Get detailed information about test failures.",
41673
41672
  inputSchema: {
41674
41673
  type: "object",
41675
41674
  properties: {
@@ -41706,7 +41705,7 @@ var DEV_TOOLS = [
41706
41705
  idempotentHint: true,
41707
41706
  openWorldHint: true
41708
41707
  },
41709
- description: "Analyze and report build problems and failures",
41708
+ description: "Analyze and report build problems and failures.",
41710
41709
  inputSchema: {
41711
41710
  type: "object",
41712
41711
  properties: {
@@ -41744,7 +41743,7 @@ var DEV_TOOLS = [
41744
41743
  idempotentHint: true,
41745
41744
  openWorldHint: true
41746
41745
  },
41747
- description: "List VCS changes (supports pagination)",
41746
+ description: "List VCS changes. Supports pagination.",
41748
41747
  inputSchema: {
41749
41748
  type: "object",
41750
41749
  properties: {
@@ -41820,7 +41819,7 @@ var DEV_TOOLS = [
41820
41819
  idempotentHint: true,
41821
41820
  openWorldHint: true
41822
41821
  },
41823
- description: "List build problems (supports pagination)",
41822
+ description: "List build problems. Supports pagination.",
41824
41823
  inputSchema: {
41825
41824
  type: "object",
41826
41825
  properties: {
@@ -41896,7 +41895,7 @@ var DEV_TOOLS = [
41896
41895
  idempotentHint: true,
41897
41896
  openWorldHint: true
41898
41897
  },
41899
- description: "List problem occurrences (supports pagination)",
41898
+ description: "List build problem occurrences. Supports pagination.",
41900
41899
  inputSchema: {
41901
41900
  type: "object",
41902
41901
  properties: {
@@ -41978,7 +41977,7 @@ var DEV_TOOLS = [
41978
41977
  idempotentHint: true,
41979
41978
  openWorldHint: true
41980
41979
  },
41981
- description: "List open investigations (supports pagination)",
41980
+ description: "List open investigations. Supports pagination.",
41982
41981
  inputSchema: {
41983
41982
  type: "object",
41984
41983
  properties: {
@@ -42067,7 +42066,7 @@ var DEV_TOOLS = [
42067
42066
  idempotentHint: true,
42068
42067
  openWorldHint: true
42069
42068
  },
42070
- description: "List muted tests (supports pagination)",
42069
+ description: "List muted tests. Supports pagination.",
42071
42070
  inputSchema: {
42072
42071
  type: "object",
42073
42072
  properties: {
@@ -42149,7 +42148,7 @@ var DEV_TOOLS = [
42149
42148
  idempotentHint: true,
42150
42149
  openWorldHint: true
42151
42150
  },
42152
- description: "Get Versioned Settings status for a locator",
42151
+ description: "Get Versioned Settings status for a project locator.",
42153
42152
  inputSchema: {
42154
42153
  type: "object",
42155
42154
  properties: {
@@ -42193,7 +42192,7 @@ var DEV_TOOLS = [
42193
42192
  idempotentHint: true,
42194
42193
  openWorldHint: true
42195
42194
  },
42196
- description: "List TeamCity users (supports pagination)",
42195
+ description: "List TeamCity users. Supports pagination.",
42197
42196
  inputSchema: {
42198
42197
  type: "object",
42199
42198
  properties: {
@@ -42264,7 +42263,7 @@ var DEV_TOOLS = [
42264
42263
  idempotentHint: true,
42265
42264
  openWorldHint: true
42266
42265
  },
42267
- description: "List defined roles and their permissions",
42266
+ description: "List defined roles and their permissions.",
42268
42267
  inputSchema: {
42269
42268
  type: "object",
42270
42269
  properties: {
@@ -42298,7 +42297,7 @@ var DEV_TOOLS = [
42298
42297
  idempotentHint: true,
42299
42298
  openWorldHint: true
42300
42299
  },
42301
- description: "List branches for a project or build configuration",
42300
+ description: "List branches for a project or build configuration.",
42302
42301
  inputSchema: {
42303
42302
  type: "object",
42304
42303
  properties: {
@@ -42338,7 +42337,7 @@ var DEV_TOOLS = [
42338
42337
  idempotentHint: true,
42339
42338
  openWorldHint: true
42340
42339
  },
42341
- description: "List parameters for a build configuration",
42340
+ description: "List parameters for a build configuration.",
42342
42341
  inputSchema: {
42343
42342
  type: "object",
42344
42343
  properties: {
@@ -42371,7 +42370,7 @@ var DEV_TOOLS = [
42371
42370
  idempotentHint: true,
42372
42371
  openWorldHint: true
42373
42372
  },
42374
- description: "List project hierarchy showing parent-child relationships",
42373
+ description: "List project hierarchy showing parent-child relationships.",
42375
42374
  inputSchema: {
42376
42375
  type: "object",
42377
42376
  properties: {
@@ -42427,7 +42426,7 @@ var FULL_MODE_TOOLS = [
42427
42426
  idempotentHint: false,
42428
42427
  openWorldHint: true
42429
42428
  },
42430
- description: "Create a new TeamCity project",
42429
+ description: "Create a new TeamCity project. Returns the created project (id and name); returns 409 if a project with the same id already exists.",
42431
42430
  inputSchema: {
42432
42431
  type: "object",
42433
42432
  properties: {
@@ -42474,7 +42473,7 @@ var FULL_MODE_TOOLS = [
42474
42473
  idempotentHint: true,
42475
42474
  openWorldHint: true
42476
42475
  },
42477
- description: "Delete a TeamCity project",
42476
+ description: "Delete a TeamCity project. Irreversible; returns 404 if the project does not exist.",
42478
42477
  inputSchema: {
42479
42478
  type: "object",
42480
42479
  properties: {
@@ -42498,7 +42497,7 @@ var FULL_MODE_TOOLS = [
42498
42497
  idempotentHint: true,
42499
42498
  openWorldHint: true
42500
42499
  },
42501
- description: "Update project settings and parameters",
42500
+ description: "Update project settings and parameters. Returns the updated project; returns 404 if the project does not exist.",
42502
42501
  inputSchema: {
42503
42502
  type: "object",
42504
42503
  properties: {
@@ -42594,7 +42593,7 @@ var FULL_MODE_TOOLS = [
42594
42593
  idempotentHint: false,
42595
42594
  openWorldHint: true
42596
42595
  },
42597
- description: "Create a new build configuration",
42596
+ description: "Create a new build configuration. Returns the created configuration (id and name); returns 409 if a configuration with the same id already exists.",
42598
42597
  inputSchema: {
42599
42598
  type: "object",
42600
42599
  properties: {
@@ -42629,7 +42628,7 @@ var FULL_MODE_TOOLS = [
42629
42628
  idempotentHint: false,
42630
42629
  openWorldHint: true
42631
42630
  },
42632
- description: "Clone an existing build configuration",
42631
+ description: "Clone an existing build configuration. Returns the new configuration (id and name); returns 404 if the source configuration is unknown.",
42633
42632
  inputSchema: {
42634
42633
  type: "object",
42635
42634
  properties: {
@@ -42729,7 +42728,7 @@ var FULL_MODE_TOOLS = [
42729
42728
  idempotentHint: true,
42730
42729
  openWorldHint: true
42731
42730
  },
42732
- description: "Update build configuration settings",
42731
+ description: "Update build configuration settings. Returns the updated configuration; returns 404 if the configuration is unknown.",
42733
42732
  inputSchema: {
42734
42733
  type: "object",
42735
42734
  properties: {
@@ -42828,7 +42827,7 @@ var FULL_MODE_TOOLS = [
42828
42827
  idempotentHint: true,
42829
42828
  openWorldHint: true
42830
42829
  },
42831
- description: "Add, update, or delete artifact and snapshot dependencies for a build configuration",
42830
+ description: "Add, update, or delete artifact and snapshot dependencies for a build configuration. Returns the affected dependency or a delete confirmation; returns 404 if the configuration or dependency id is unknown.",
42832
42831
  inputSchema: {
42833
42832
  type: "object",
42834
42833
  properties: {
@@ -42976,7 +42975,7 @@ var FULL_MODE_TOOLS = [
42976
42975
  idempotentHint: true,
42977
42976
  openWorldHint: true
42978
42977
  },
42979
- description: "Add, update, or delete build features such as ssh-agent or requirements enforcement",
42978
+ description: "Add, update, or delete build features such as ssh-agent or requirements enforcement. Returns the affected feature or a delete confirmation; returns 404 if the configuration or feature id is unknown.",
42980
42979
  inputSchema: {
42981
42980
  type: "object",
42982
42981
  properties: {
@@ -43089,7 +43088,7 @@ var FULL_MODE_TOOLS = [
43089
43088
  idempotentHint: true,
43090
43089
  openWorldHint: true
43091
43090
  },
43092
- description: "Add, update, or delete build agent requirements for a configuration",
43091
+ description: "Add, update, or delete agent requirements for a build configuration. Returns the affected requirement or a delete confirmation; returns 404 if the configuration or requirement id is unknown.",
43093
43092
  inputSchema: {
43094
43093
  type: "object",
43095
43094
  properties: {
@@ -43241,7 +43240,7 @@ var FULL_MODE_TOOLS = [
43241
43240
  idempotentHint: true,
43242
43241
  openWorldHint: true
43243
43242
  },
43244
- description: "Enable or disable a build configuration by toggling its paused flag",
43243
+ description: "Enable or disable a build configuration by toggling its paused flag. Returns the new paused state; returns 404 if the configuration is unknown.",
43245
43244
  inputSchema: {
43246
43245
  type: "object",
43247
43246
  properties: {
@@ -43292,7 +43291,7 @@ var FULL_MODE_TOOLS = [
43292
43291
  idempotentHint: true,
43293
43292
  openWorldHint: true
43294
43293
  },
43295
- description: "Attach a VCS root to a build configuration",
43294
+ description: "Attach a VCS root to a build configuration. Returns the attached VCS root entry; returns 404 if the configuration or VCS root is unknown.",
43296
43295
  inputSchema: {
43297
43296
  type: "object",
43298
43297
  properties: {
@@ -43346,7 +43345,7 @@ var FULL_MODE_TOOLS = [
43346
43345
  idempotentHint: true,
43347
43346
  openWorldHint: true
43348
43347
  },
43349
- description: "Add a parameter to a build configuration",
43348
+ description: "Add a parameter to a build configuration. Returns the created parameter; returns 404 if the configuration is unknown.",
43350
43349
  inputSchema: {
43351
43350
  type: "object",
43352
43351
  properties: {
@@ -43393,7 +43392,7 @@ var FULL_MODE_TOOLS = [
43393
43392
  idempotentHint: true,
43394
43393
  openWorldHint: true
43395
43394
  },
43396
- description: "Update a build configuration parameter",
43395
+ description: "Update a build configuration parameter. Returns the updated parameter; returns 404 if the configuration or parameter name is unknown.",
43397
43396
  inputSchema: {
43398
43397
  type: "object",
43399
43398
  properties: {
@@ -43441,7 +43440,7 @@ var FULL_MODE_TOOLS = [
43441
43440
  idempotentHint: true,
43442
43441
  openWorldHint: true
43443
43442
  },
43444
- description: "Delete a parameter from a build configuration",
43443
+ description: "Delete a parameter from a build configuration. Idempotent; returns 404 if the configuration is unknown.",
43445
43444
  inputSchema: {
43446
43445
  type: "object",
43447
43446
  properties: {
@@ -43475,7 +43474,7 @@ var FULL_MODE_TOOLS = [
43475
43474
  idempotentHint: true,
43476
43475
  openWorldHint: true
43477
43476
  },
43478
- description: "List parameters for a project",
43477
+ description: "List parameters for a project.",
43479
43478
  inputSchema: {
43480
43479
  type: "object",
43481
43480
  properties: {
@@ -43502,7 +43501,7 @@ var FULL_MODE_TOOLS = [
43502
43501
  idempotentHint: true,
43503
43502
  openWorldHint: true
43504
43503
  },
43505
- description: "Add a parameter to a project",
43504
+ description: "Add a parameter to a project. Returns the created parameter; returns 404 if the project does not exist.",
43506
43505
  inputSchema: {
43507
43506
  type: "object",
43508
43507
  properties: {
@@ -43551,7 +43550,7 @@ var FULL_MODE_TOOLS = [
43551
43550
  idempotentHint: true,
43552
43551
  openWorldHint: true
43553
43552
  },
43554
- description: "Update a project parameter",
43553
+ description: "Update a project parameter. Returns the updated parameter; returns 404 if the project or parameter name is unknown.",
43555
43554
  inputSchema: {
43556
43555
  type: "object",
43557
43556
  properties: {
@@ -43599,7 +43598,7 @@ var FULL_MODE_TOOLS = [
43599
43598
  idempotentHint: true,
43600
43599
  openWorldHint: true
43601
43600
  },
43602
- description: "Delete a parameter from a project",
43601
+ description: "Delete a parameter from a project. Idempotent; returns 404 if the project does not exist.",
43603
43602
  inputSchema: {
43604
43603
  type: "object",
43605
43604
  properties: {
@@ -43630,7 +43629,7 @@ var FULL_MODE_TOOLS = [
43630
43629
  idempotentHint: true,
43631
43630
  openWorldHint: true
43632
43631
  },
43633
- description: "List output parameters for a build configuration",
43632
+ description: "List output parameters for a build configuration.",
43634
43633
  inputSchema: {
43635
43634
  type: "object",
43636
43635
  properties: {
@@ -43657,7 +43656,7 @@ var FULL_MODE_TOOLS = [
43657
43656
  idempotentHint: true,
43658
43657
  openWorldHint: true
43659
43658
  },
43660
- description: "Add an output parameter to a build configuration (for build chains)",
43659
+ description: "Add an output parameter to a build configuration; used to pass values between builds in a chain. Returns the created parameter; returns 404 if the configuration is unknown.",
43661
43660
  inputSchema: {
43662
43661
  type: "object",
43663
43662
  properties: {
@@ -43697,7 +43696,7 @@ var FULL_MODE_TOOLS = [
43697
43696
  idempotentHint: true,
43698
43697
  openWorldHint: true
43699
43698
  },
43700
- description: "Update an output parameter in a build configuration",
43699
+ description: "Update an output parameter in a build configuration. Returns the updated parameter; returns 404 if the configuration or parameter name is unknown.",
43701
43700
  inputSchema: {
43702
43701
  type: "object",
43703
43702
  properties: {
@@ -43737,7 +43736,7 @@ var FULL_MODE_TOOLS = [
43737
43736
  idempotentHint: true,
43738
43737
  openWorldHint: true
43739
43738
  },
43740
- description: "Delete an output parameter from a build configuration",
43739
+ description: "Delete an output parameter from a build configuration. Idempotent; returns 404 if the configuration is unknown.",
43741
43740
  inputSchema: {
43742
43741
  type: "object",
43743
43742
  properties: {
@@ -43771,7 +43770,7 @@ var FULL_MODE_TOOLS = [
43771
43770
  idempotentHint: false,
43772
43771
  openWorldHint: true
43773
43772
  },
43774
- description: "Create a new VCS root",
43773
+ description: "Create a new VCS root. Returns the created VCS root id; returns 409 if a VCS root with the same id already exists.",
43775
43774
  inputSchema: {
43776
43775
  type: "object",
43777
43776
  properties: {
@@ -43815,7 +43814,7 @@ var FULL_MODE_TOOLS = [
43815
43814
  idempotentHint: true,
43816
43815
  openWorldHint: true
43817
43816
  },
43818
- description: "Authorize or unauthorize a build agent",
43817
+ description: "Authorize or unauthorize a build agent. Returns the new authorization state; returns 404 if the agent is unknown.",
43819
43818
  inputSchema: {
43820
43819
  type: "object",
43821
43820
  properties: {
@@ -43850,7 +43849,7 @@ var FULL_MODE_TOOLS = [
43850
43849
  idempotentHint: true,
43851
43850
  openWorldHint: true
43852
43851
  },
43853
- description: "Assign an agent to a different pool",
43852
+ description: "Assign an agent to a different pool. Returns the agent's new pool assignment; returns 404 if the agent or pool is unknown.",
43854
43853
  inputSchema: {
43855
43854
  type: "object",
43856
43855
  properties: {
@@ -43882,7 +43881,7 @@ var FULL_MODE_TOOLS = [
43882
43881
  idempotentHint: true,
43883
43882
  openWorldHint: true
43884
43883
  },
43885
- description: "Remove (delete) a build agent from the TeamCity server. Use this to clean up disconnected or ghost agent entries.",
43884
+ description: "Remove a build agent from the TeamCity server, useful for cleaning up disconnected or ghost agent entries. Idempotent; returns 404 if the agent is unknown.",
43886
43885
  inputSchema: {
43887
43886
  type: "object",
43888
43887
  properties: {
@@ -43907,7 +43906,7 @@ var FULL_MODE_TOOLS = [
43907
43906
  idempotentHint: true,
43908
43907
  openWorldHint: true
43909
43908
  },
43910
- description: "Add, update, or delete build steps",
43909
+ description: "Add, update, or delete build steps. Returns the affected step or a delete confirmation; returns 404 if the configuration or step id is unknown.",
43911
43910
  inputSchema: {
43912
43911
  type: "object",
43913
43912
  properties: {
@@ -44106,7 +44105,7 @@ var FULL_MODE_TOOLS = [
44106
44105
  idempotentHint: true,
44107
44106
  openWorldHint: true
44108
44107
  },
44109
- description: "Add, update, or delete build triggers",
44108
+ description: "Add, update, or delete build triggers. Returns the affected trigger or a delete confirmation; returns 404 if the configuration or trigger id is unknown.",
44110
44109
  inputSchema: {
44111
44110
  type: "object",
44112
44111
  properties: {
@@ -44179,7 +44178,7 @@ var FULL_MODE_TOOLS = [
44179
44178
  idempotentHint: true,
44180
44179
  openWorldHint: true
44181
44180
  },
44182
- description: "Set paused/unpaused for a list of build configurations; optionally cancel queued",
44181
+ description: "Pause or unpause a list of build configurations, optionally cancelling their queued builds. Returns the count of configurations updated; returns 404 if any configuration is unknown.",
44183
44182
  inputSchema: {
44184
44183
  type: "object",
44185
44184
  properties: {
@@ -44246,7 +44245,7 @@ var FULL_MODE_TOOLS = [
44246
44245
  idempotentHint: false,
44247
44246
  openWorldHint: true
44248
44247
  },
44249
- description: "Mute tests within a project or build configuration scope",
44248
+ description: "Mute tests within a project or build configuration scope. Returns the created mute id; returns 404 if the scope id is unknown.",
44250
44249
  inputSchema: {
44251
44250
  type: "object",
44252
44251
  properties: {
@@ -44343,7 +44342,7 @@ var FULL_MODE_TOOLS = [
44343
44342
  idempotentHint: false,
44344
44343
  openWorldHint: true
44345
44344
  },
44346
- description: "Move a queued build to the top of the queue",
44345
+ description: "Move a queued build to the top of the queue. Idempotent; returns 404 if the build is no longer queued.",
44347
44346
  inputSchema: {
44348
44347
  type: "object",
44349
44348
  properties: { buildId: { type: "string", description: "Queued build ID" } },
@@ -44378,7 +44377,7 @@ var FULL_MODE_TOOLS = [
44378
44377
  idempotentHint: false,
44379
44378
  openWorldHint: true
44380
44379
  },
44381
- description: "Reorder queued builds by providing the desired sequence of IDs",
44380
+ description: "Reorder queued builds by providing the desired sequence of IDs. Returns the new queue order; returns 404 if any build id is no longer queued.",
44382
44381
  inputSchema: {
44383
44382
  type: "object",
44384
44383
  properties: { buildIds: { type: "array", items: { type: "string" } } },
@@ -44413,7 +44412,7 @@ var FULL_MODE_TOOLS = [
44413
44412
  idempotentHint: false,
44414
44413
  openWorldHint: true
44415
44414
  },
44416
- description: "Cancel all queued builds for a specific build configuration",
44415
+ description: "Cancel all queued builds for a specific build configuration. Returns the count of cancelled builds; returns 404 if the configuration is unknown.",
44417
44416
  inputSchema: {
44418
44417
  type: "object",
44419
44418
  properties: { buildTypeId: { type: "string", description: "Build type ID" } },
@@ -44455,7 +44454,7 @@ var FULL_MODE_TOOLS = [
44455
44454
  idempotentHint: false,
44456
44455
  openWorldHint: true
44457
44456
  },
44458
- description: "Cancel all queued builds matching a queue locator expression",
44457
+ description: "Cancel all queued builds matching a queue locator expression. Returns the count of cancelled builds; returns 400 if the locator is malformed.",
44459
44458
  inputSchema: {
44460
44459
  type: "object",
44461
44460
  properties: { locator: { type: "string", description: "Queue locator expression" } },
@@ -44497,7 +44496,7 @@ var FULL_MODE_TOOLS = [
44497
44496
  idempotentHint: true,
44498
44497
  openWorldHint: true
44499
44498
  },
44500
- description: "Disable all agents in a pool to pause queue processing; optionally cancel queued builds for a build type",
44499
+ description: "Pause queue processing by disabling all agents in a pool, optionally cancelling queued builds for a build type. Returns counts of agents disabled and builds cancelled; returns 404 if the pool is unknown.",
44501
44500
  inputSchema: {
44502
44501
  type: "object",
44503
44502
  properties: {
@@ -44575,7 +44574,7 @@ var FULL_MODE_TOOLS = [
44575
44574
  idempotentHint: true,
44576
44575
  openWorldHint: true
44577
44576
  },
44578
- description: "Re-enable all agents in a pool to resume queue processing",
44577
+ description: "Resume queue processing by re-enabling all agents in a pool. Returns the count of agents re-enabled; returns 404 if the pool is unknown.",
44579
44578
  inputSchema: {
44580
44579
  type: "object",
44581
44580
  properties: { poolId: { type: "string", description: "Agent pool ID" } },
@@ -44625,7 +44624,7 @@ var FULL_MODE_TOOLS = [
44625
44624
  idempotentHint: true,
44626
44625
  openWorldHint: true
44627
44626
  },
44628
- description: "Enable/disable an agent, with optional comment and schedule",
44627
+ description: "Enable or disable an agent, with optional comment and schedule. Returns the new enabled state; returns 404 if the agent is unknown.",
44629
44628
  inputSchema: {
44630
44629
  type: "object",
44631
44630
  properties: {
@@ -44677,7 +44676,7 @@ var FULL_MODE_TOOLS = [
44677
44676
  idempotentHint: true,
44678
44677
  openWorldHint: true
44679
44678
  },
44680
- description: "Bulk enable/disable agents selected by pool or locator; supports comment/schedule",
44679
+ description: "Bulk enable or disable agents selected by pool or locator, with optional comment and schedule. Returns counts of agents updated and skipped; returns 404 if the pool is unknown or 400 if the locator is malformed.",
44681
44680
  inputSchema: {
44682
44681
  type: "object",
44683
44682
  properties: {
@@ -44770,7 +44769,7 @@ var FULL_MODE_TOOLS = [
44770
44769
  idempotentHint: true,
44771
44770
  openWorldHint: true
44772
44771
  },
44773
- description: "List SSH keys configured for a project",
44772
+ description: "List SSH keys configured for a project.",
44774
44773
  inputSchema: {
44775
44774
  type: "object",
44776
44775
  properties: {
@@ -44802,7 +44801,7 @@ var FULL_MODE_TOOLS = [
44802
44801
  idempotentHint: false,
44803
44802
  openWorldHint: true
44804
44803
  },
44805
- description: "Upload an SSH key to a project. Provide either privateKeyContent (raw PEM string) or privateKeyPath (path to key file), but not both.",
44804
+ description: "Upload an SSH key to a project; provide either privateKeyContent or privateKeyPath, not both. Returns the uploaded key's name; returns 404 if the project does not exist.",
44806
44805
  inputSchema: {
44807
44806
  type: "object",
44808
44807
  properties: {
@@ -44852,7 +44851,7 @@ var FULL_MODE_TOOLS = [
44852
44851
  idempotentHint: true,
44853
44852
  openWorldHint: true
44854
44853
  },
44855
- description: "Delete an SSH key from a project",
44854
+ description: "Delete an SSH key from a project. Idempotent; returns 404 if the project or key is unknown.",
44856
44855
  inputSchema: {
44857
44856
  type: "object",
44858
44857
  properties: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@daghis/teamcity-mcp",
3
- "version": "2.8.0",
3
+ "version": "2.10.0",
4
4
  "description": "Model Control Protocol server for TeamCity CI/CD integration with AI coding assistants",
5
5
  "mcpName": "io.github.Daghis/teamcity",
6
6
  "main": "dist/index.js",
@@ -73,7 +73,6 @@
73
73
  "zod": "^4.3.5"
74
74
  },
75
75
  "devDependencies": {
76
- "@codecov/bundle-analyzer": "^2.0.1",
77
76
  "@esbuild-plugins/tsconfig-paths": "^0.1.2",
78
77
  "@eslint/js": "^10.0.1",
79
78
  "@trivago/prettier-plugin-sort-imports": "^6.0.1",
package/server.json CHANGED
@@ -7,13 +7,13 @@
7
7
  "source": "github"
8
8
  },
9
9
  "websiteUrl": "https://github.com/Daghis/teamcity-mcp",
10
- "version": "2.8.0",
10
+ "version": "2.10.0",
11
11
  "packages": [
12
12
  {
13
13
  "registryType": "npm",
14
14
  "registryBaseUrl": "https://registry.npmjs.org",
15
15
  "identifier": "@daghis/teamcity-mcp",
16
- "version": "2.8.0",
16
+ "version": "2.10.0",
17
17
  "runtimeHint": "npx",
18
18
  "runtimeArguments": [
19
19
  {