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