@daghis/teamcity-mcp 2.9.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 +7 -0
- package/dist/index.js +47 -48
- package/package.json +1 -2
- package/server.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
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
|
+
|
|
3
10
|
## [2.9.0](https://github.com/Daghis/teamcity-mcp/compare/teamcity-mcp-v2.8.0...teamcity-mcp-v2.9.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.
|
|
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",
|
|
@@ -39284,7 +39283,7 @@ var DEV_TOOLS = [
|
|
|
39284
39283
|
idempotentHint: true,
|
|
39285
39284
|
openWorldHint: false
|
|
39286
39285
|
},
|
|
39287
|
-
description: "Switch MCP mode at runtime.
|
|
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: {
|
|
@@ -39580,7 +39579,7 @@ var DEV_TOOLS = [
|
|
|
39580
39579
|
idempotentHint: false,
|
|
39581
39580
|
openWorldHint: true
|
|
39582
39581
|
},
|
|
39583
|
-
description: "Trigger a new build. Returns the queued build id;
|
|
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: {
|
|
@@ -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
|
|
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: {
|
|
@@ -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 such as branch, branchSpec, or 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 a single 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: {
|
|
@@ -41433,7 +41432,7 @@ var DEV_TOOLS = [
|
|
|
41433
41432
|
idempotentHint: false,
|
|
41434
41433
|
openWorldHint: true
|
|
41435
41434
|
},
|
|
41436
|
-
description: "Download a single build artifact
|
|
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 build artifacts
|
|
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: {
|
|
@@ -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 agent requirements for a build 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: {
|
|
@@ -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: {
|
|
@@ -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
|
|
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 a build agent from the TeamCity server
|
|
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: "Pause or unpause a list of build configurations
|
|
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: "Pause queue processing by disabling all agents in a pool
|
|
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: "Resume queue processing by re-enabling all agents in a pool.",
|
|
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 or disable an agent
|
|
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 or disable agents selected by pool or locator
|
|
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: {
|
|
@@ -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
|
|
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.
|
|
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.
|
|
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.
|
|
16
|
+
"version": "2.10.0",
|
|
17
17
|
"runtimeHint": "npx",
|
|
18
18
|
"runtimeArguments": [
|
|
19
19
|
{
|