@daghis/teamcity-mcp 2.6.3 → 2.7.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 +563 -3
- package/package.json +3 -2
- package/server.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [2.7.0](https://github.com/Daghis/teamcity-mcp/compare/teamcity-mcp-v2.6.3...teamcity-mcp-v2.7.0) (2026-04-23)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* add MCP behavioral annotations to all 93 tool registrations ([#473](https://github.com/Daghis/teamcity-mcp/issues/473)) ([be71f71](https://github.com/Daghis/teamcity-mcp/commit/be71f71730ad9ac87a17dbcad999b0f02a23868b))
|
|
9
|
+
|
|
3
10
|
## [2.6.3](https://github.com/Daghis/teamcity-mcp/compare/teamcity-mcp-v2.6.2...teamcity-mcp-v2.6.3) (2026-04-20)
|
|
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.7.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",
|
|
@@ -1306,8 +1306,9 @@ var package_default = {
|
|
|
1306
1306
|
"@hono/node-server": "^1.19.13",
|
|
1307
1307
|
axios: "^1.15.0",
|
|
1308
1308
|
"body-parser": "^2.2.1",
|
|
1309
|
+
"follow-redirects": "^1.16.0",
|
|
1309
1310
|
"glob@>=10.2.0 <10.5.0": "^10.5.0",
|
|
1310
|
-
hono: "^4.12.
|
|
1311
|
+
hono: "^4.12.14",
|
|
1311
1312
|
"js-yaml@<4.0.0": "^3.14.2",
|
|
1312
1313
|
"lodash-es": "^4.18.0",
|
|
1313
1314
|
"picomatch@>=2 <2.3.2": "^2.3.2",
|
|
@@ -39058,6 +39059,12 @@ var DEV_TOOLS = [
|
|
|
39058
39059
|
// === Basic Tools ===
|
|
39059
39060
|
{
|
|
39060
39061
|
name: "ping",
|
|
39062
|
+
annotations: {
|
|
39063
|
+
readOnlyHint: true,
|
|
39064
|
+
destructiveHint: false,
|
|
39065
|
+
idempotentHint: true,
|
|
39066
|
+
openWorldHint: true
|
|
39067
|
+
},
|
|
39061
39068
|
description: "Test MCP server connectivity",
|
|
39062
39069
|
inputSchema: {
|
|
39063
39070
|
type: "object",
|
|
@@ -39080,6 +39087,12 @@ var DEV_TOOLS = [
|
|
|
39080
39087
|
// === Mode Management Tools ===
|
|
39081
39088
|
{
|
|
39082
39089
|
name: "get_mcp_mode",
|
|
39090
|
+
annotations: {
|
|
39091
|
+
readOnlyHint: true,
|
|
39092
|
+
destructiveHint: false,
|
|
39093
|
+
idempotentHint: true,
|
|
39094
|
+
openWorldHint: false
|
|
39095
|
+
},
|
|
39083
39096
|
description: "Get current MCP mode. Dev mode: read-only tools for safe exploration. Full mode: all tools including admin operations.",
|
|
39084
39097
|
inputSchema: {
|
|
39085
39098
|
type: "object",
|
|
@@ -39100,6 +39113,12 @@ var DEV_TOOLS = [
|
|
|
39100
39113
|
},
|
|
39101
39114
|
{
|
|
39102
39115
|
name: "set_mcp_mode",
|
|
39116
|
+
annotations: {
|
|
39117
|
+
readOnlyHint: false,
|
|
39118
|
+
destructiveHint: false,
|
|
39119
|
+
idempotentHint: true,
|
|
39120
|
+
openWorldHint: false
|
|
39121
|
+
},
|
|
39103
39122
|
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.",
|
|
39104
39123
|
inputSchema: {
|
|
39105
39124
|
type: "object",
|
|
@@ -39143,6 +39162,12 @@ var DEV_TOOLS = [
|
|
|
39143
39162
|
// === Project Tools ===
|
|
39144
39163
|
{
|
|
39145
39164
|
name: "list_projects",
|
|
39165
|
+
annotations: {
|
|
39166
|
+
readOnlyHint: true,
|
|
39167
|
+
destructiveHint: false,
|
|
39168
|
+
idempotentHint: true,
|
|
39169
|
+
openWorldHint: true
|
|
39170
|
+
},
|
|
39146
39171
|
description: "List TeamCity projects (supports pagination)",
|
|
39147
39172
|
inputSchema: {
|
|
39148
39173
|
type: "object",
|
|
@@ -39210,6 +39235,12 @@ var DEV_TOOLS = [
|
|
|
39210
39235
|
},
|
|
39211
39236
|
{
|
|
39212
39237
|
name: "get_project",
|
|
39238
|
+
annotations: {
|
|
39239
|
+
readOnlyHint: true,
|
|
39240
|
+
destructiveHint: false,
|
|
39241
|
+
idempotentHint: true,
|
|
39242
|
+
openWorldHint: true
|
|
39243
|
+
},
|
|
39213
39244
|
description: "Get details of a specific project",
|
|
39214
39245
|
inputSchema: {
|
|
39215
39246
|
type: "object",
|
|
@@ -39235,6 +39266,12 @@ var DEV_TOOLS = [
|
|
|
39235
39266
|
// === Build Tools ===
|
|
39236
39267
|
{
|
|
39237
39268
|
name: "list_builds",
|
|
39269
|
+
annotations: {
|
|
39270
|
+
readOnlyHint: true,
|
|
39271
|
+
destructiveHint: false,
|
|
39272
|
+
idempotentHint: true,
|
|
39273
|
+
openWorldHint: true
|
|
39274
|
+
},
|
|
39238
39275
|
description: "List TeamCity builds (supports pagination)",
|
|
39239
39276
|
inputSchema: {
|
|
39240
39277
|
type: "object",
|
|
@@ -39323,6 +39360,12 @@ var DEV_TOOLS = [
|
|
|
39323
39360
|
},
|
|
39324
39361
|
{
|
|
39325
39362
|
name: "get_build",
|
|
39363
|
+
annotations: {
|
|
39364
|
+
readOnlyHint: true,
|
|
39365
|
+
destructiveHint: false,
|
|
39366
|
+
idempotentHint: true,
|
|
39367
|
+
openWorldHint: true
|
|
39368
|
+
},
|
|
39326
39369
|
description: "Get details of a specific build (works for both queued and running/finished builds)",
|
|
39327
39370
|
inputSchema: {
|
|
39328
39371
|
type: "object",
|
|
@@ -39362,6 +39405,12 @@ var DEV_TOOLS = [
|
|
|
39362
39405
|
},
|
|
39363
39406
|
{
|
|
39364
39407
|
name: "trigger_build",
|
|
39408
|
+
annotations: {
|
|
39409
|
+
readOnlyHint: false,
|
|
39410
|
+
destructiveHint: false,
|
|
39411
|
+
idempotentHint: false,
|
|
39412
|
+
openWorldHint: true
|
|
39413
|
+
},
|
|
39365
39414
|
description: "Trigger a new build",
|
|
39366
39415
|
inputSchema: {
|
|
39367
39416
|
type: "object",
|
|
@@ -39477,6 +39526,12 @@ var DEV_TOOLS = [
|
|
|
39477
39526
|
},
|
|
39478
39527
|
{
|
|
39479
39528
|
name: "cancel_queued_build",
|
|
39529
|
+
annotations: {
|
|
39530
|
+
readOnlyHint: false,
|
|
39531
|
+
destructiveHint: false,
|
|
39532
|
+
idempotentHint: false,
|
|
39533
|
+
openWorldHint: true
|
|
39534
|
+
},
|
|
39480
39535
|
description: "Cancel a queued build by ID",
|
|
39481
39536
|
inputSchema: {
|
|
39482
39537
|
type: "object",
|
|
@@ -39502,6 +39557,12 @@ var DEV_TOOLS = [
|
|
|
39502
39557
|
},
|
|
39503
39558
|
{
|
|
39504
39559
|
name: "cancel_build",
|
|
39560
|
+
annotations: {
|
|
39561
|
+
readOnlyHint: false,
|
|
39562
|
+
destructiveHint: false,
|
|
39563
|
+
idempotentHint: false,
|
|
39564
|
+
openWorldHint: true
|
|
39565
|
+
},
|
|
39505
39566
|
description: "Cancel or stop a running (or queued) build by ID. Supports an optional comment and requeue flag.",
|
|
39506
39567
|
inputSchema: {
|
|
39507
39568
|
type: "object",
|
|
@@ -39548,6 +39609,12 @@ var DEV_TOOLS = [
|
|
|
39548
39609
|
},
|
|
39549
39610
|
{
|
|
39550
39611
|
name: "get_build_status",
|
|
39612
|
+
annotations: {
|
|
39613
|
+
readOnlyHint: true,
|
|
39614
|
+
destructiveHint: false,
|
|
39615
|
+
idempotentHint: true,
|
|
39616
|
+
openWorldHint: true
|
|
39617
|
+
},
|
|
39551
39618
|
description: "Get build status with optional test/problem and queue context details",
|
|
39552
39619
|
inputSchema: {
|
|
39553
39620
|
type: "object",
|
|
@@ -39644,6 +39711,12 @@ var DEV_TOOLS = [
|
|
|
39644
39711
|
},
|
|
39645
39712
|
{
|
|
39646
39713
|
name: "wait_for_build",
|
|
39714
|
+
annotations: {
|
|
39715
|
+
readOnlyHint: true,
|
|
39716
|
+
destructiveHint: false,
|
|
39717
|
+
idempotentHint: false,
|
|
39718
|
+
openWorldHint: true
|
|
39719
|
+
},
|
|
39647
39720
|
description: "Wait for a build to complete by polling until it reaches a terminal state (finished, canceled, failed) or timeout",
|
|
39648
39721
|
inputSchema: {
|
|
39649
39722
|
type: "object",
|
|
@@ -39733,6 +39806,12 @@ var DEV_TOOLS = [
|
|
|
39733
39806
|
},
|
|
39734
39807
|
{
|
|
39735
39808
|
name: "fetch_build_log",
|
|
39809
|
+
annotations: {
|
|
39810
|
+
readOnlyHint: true,
|
|
39811
|
+
destructiveHint: false,
|
|
39812
|
+
idempotentHint: true,
|
|
39813
|
+
openWorldHint: true
|
|
39814
|
+
},
|
|
39736
39815
|
description: "Fetch build log with pagination (by lines)",
|
|
39737
39816
|
inputSchema: {
|
|
39738
39817
|
type: "object",
|
|
@@ -39987,6 +40066,12 @@ var DEV_TOOLS = [
|
|
|
39987
40066
|
// === Build Configuration Tools ===
|
|
39988
40067
|
{
|
|
39989
40068
|
name: "list_build_configs",
|
|
40069
|
+
annotations: {
|
|
40070
|
+
readOnlyHint: true,
|
|
40071
|
+
destructiveHint: false,
|
|
40072
|
+
idempotentHint: true,
|
|
40073
|
+
openWorldHint: true
|
|
40074
|
+
},
|
|
39990
40075
|
description: "List build configurations (supports pagination)",
|
|
39991
40076
|
inputSchema: {
|
|
39992
40077
|
type: "object",
|
|
@@ -40054,6 +40139,12 @@ var DEV_TOOLS = [
|
|
|
40054
40139
|
},
|
|
40055
40140
|
{
|
|
40056
40141
|
name: "get_build_config",
|
|
40142
|
+
annotations: {
|
|
40143
|
+
readOnlyHint: true,
|
|
40144
|
+
destructiveHint: false,
|
|
40145
|
+
idempotentHint: true,
|
|
40146
|
+
openWorldHint: true
|
|
40147
|
+
},
|
|
40057
40148
|
description: "Get details of a build configuration",
|
|
40058
40149
|
inputSchema: {
|
|
40059
40150
|
type: "object",
|
|
@@ -40079,6 +40170,12 @@ var DEV_TOOLS = [
|
|
|
40079
40170
|
// === Test Tools ===
|
|
40080
40171
|
{
|
|
40081
40172
|
name: "list_test_failures",
|
|
40173
|
+
annotations: {
|
|
40174
|
+
readOnlyHint: true,
|
|
40175
|
+
destructiveHint: false,
|
|
40176
|
+
idempotentHint: true,
|
|
40177
|
+
openWorldHint: true
|
|
40178
|
+
},
|
|
40082
40179
|
description: "List test failures for a build (supports pagination)",
|
|
40083
40180
|
inputSchema: {
|
|
40084
40181
|
type: "object",
|
|
@@ -40141,6 +40238,12 @@ var DEV_TOOLS = [
|
|
|
40141
40238
|
// === VCS Tools ===
|
|
40142
40239
|
{
|
|
40143
40240
|
name: "list_vcs_roots",
|
|
40241
|
+
annotations: {
|
|
40242
|
+
readOnlyHint: true,
|
|
40243
|
+
destructiveHint: false,
|
|
40244
|
+
idempotentHint: true,
|
|
40245
|
+
openWorldHint: true
|
|
40246
|
+
},
|
|
40144
40247
|
description: "List VCS roots (supports pagination)",
|
|
40145
40248
|
inputSchema: {
|
|
40146
40249
|
type: "object",
|
|
@@ -40206,6 +40309,12 @@ var DEV_TOOLS = [
|
|
|
40206
40309
|
},
|
|
40207
40310
|
{
|
|
40208
40311
|
name: "get_vcs_root",
|
|
40312
|
+
annotations: {
|
|
40313
|
+
readOnlyHint: true,
|
|
40314
|
+
destructiveHint: false,
|
|
40315
|
+
idempotentHint: true,
|
|
40316
|
+
openWorldHint: true
|
|
40317
|
+
},
|
|
40209
40318
|
description: "Get details of a VCS root (including properties)",
|
|
40210
40319
|
inputSchema: {
|
|
40211
40320
|
type: "object",
|
|
@@ -40238,6 +40347,12 @@ var DEV_TOOLS = [
|
|
|
40238
40347
|
},
|
|
40239
40348
|
{
|
|
40240
40349
|
name: "set_vcs_root_property",
|
|
40350
|
+
annotations: {
|
|
40351
|
+
readOnlyHint: false,
|
|
40352
|
+
destructiveHint: false,
|
|
40353
|
+
idempotentHint: true,
|
|
40354
|
+
openWorldHint: true
|
|
40355
|
+
},
|
|
40241
40356
|
description: "Set a single VCS root property (e.g., branch, branchSpec, url)",
|
|
40242
40357
|
inputSchema: {
|
|
40243
40358
|
type: "object",
|
|
@@ -40276,6 +40391,12 @@ var DEV_TOOLS = [
|
|
|
40276
40391
|
},
|
|
40277
40392
|
{
|
|
40278
40393
|
name: "delete_vcs_root_property",
|
|
40394
|
+
annotations: {
|
|
40395
|
+
readOnlyHint: false,
|
|
40396
|
+
destructiveHint: true,
|
|
40397
|
+
idempotentHint: true,
|
|
40398
|
+
openWorldHint: true
|
|
40399
|
+
},
|
|
40279
40400
|
description: "Delete a single VCS root property",
|
|
40280
40401
|
inputSchema: {
|
|
40281
40402
|
type: "object",
|
|
@@ -40307,6 +40428,12 @@ var DEV_TOOLS = [
|
|
|
40307
40428
|
},
|
|
40308
40429
|
{
|
|
40309
40430
|
name: "update_vcs_root_properties",
|
|
40431
|
+
annotations: {
|
|
40432
|
+
readOnlyHint: false,
|
|
40433
|
+
destructiveHint: false,
|
|
40434
|
+
idempotentHint: true,
|
|
40435
|
+
openWorldHint: true
|
|
40436
|
+
},
|
|
40310
40437
|
description: "Update common VCS root properties in one call",
|
|
40311
40438
|
inputSchema: {
|
|
40312
40439
|
type: "object",
|
|
@@ -40377,6 +40504,12 @@ var DEV_TOOLS = [
|
|
|
40377
40504
|
// === Queue (read-only) ===
|
|
40378
40505
|
{
|
|
40379
40506
|
name: "list_queued_builds",
|
|
40507
|
+
annotations: {
|
|
40508
|
+
readOnlyHint: true,
|
|
40509
|
+
destructiveHint: false,
|
|
40510
|
+
idempotentHint: true,
|
|
40511
|
+
openWorldHint: true
|
|
40512
|
+
},
|
|
40380
40513
|
description: "List queued builds (supports TeamCity queue locator + pagination)",
|
|
40381
40514
|
inputSchema: {
|
|
40382
40515
|
type: "object",
|
|
@@ -40445,6 +40578,12 @@ var DEV_TOOLS = [
|
|
|
40445
40578
|
// === Server Health & Metrics (read-only) ===
|
|
40446
40579
|
{
|
|
40447
40580
|
name: "get_server_metrics",
|
|
40581
|
+
annotations: {
|
|
40582
|
+
readOnlyHint: true,
|
|
40583
|
+
destructiveHint: false,
|
|
40584
|
+
idempotentHint: true,
|
|
40585
|
+
openWorldHint: true
|
|
40586
|
+
},
|
|
40448
40587
|
description: "Fetch server metrics (CPU/memory/disk/load) if available",
|
|
40449
40588
|
inputSchema: { type: "object", properties: {} },
|
|
40450
40589
|
handler: async (_args) => {
|
|
@@ -40463,6 +40602,12 @@ var DEV_TOOLS = [
|
|
|
40463
40602
|
},
|
|
40464
40603
|
{
|
|
40465
40604
|
name: "get_server_info",
|
|
40605
|
+
annotations: {
|
|
40606
|
+
readOnlyHint: true,
|
|
40607
|
+
destructiveHint: false,
|
|
40608
|
+
idempotentHint: true,
|
|
40609
|
+
openWorldHint: true
|
|
40610
|
+
},
|
|
40466
40611
|
description: "Get TeamCity server info (version, build number, state)",
|
|
40467
40612
|
inputSchema: { type: "object", properties: {} },
|
|
40468
40613
|
handler: async (_args) => {
|
|
@@ -40480,6 +40625,12 @@ var DEV_TOOLS = [
|
|
|
40480
40625
|
},
|
|
40481
40626
|
{
|
|
40482
40627
|
name: "list_server_health_items",
|
|
40628
|
+
annotations: {
|
|
40629
|
+
readOnlyHint: true,
|
|
40630
|
+
destructiveHint: false,
|
|
40631
|
+
idempotentHint: true,
|
|
40632
|
+
openWorldHint: true
|
|
40633
|
+
},
|
|
40483
40634
|
description: "List server health items (warnings/errors) for readiness checks",
|
|
40484
40635
|
inputSchema: {
|
|
40485
40636
|
type: "object",
|
|
@@ -40545,6 +40696,12 @@ var DEV_TOOLS = [
|
|
|
40545
40696
|
},
|
|
40546
40697
|
{
|
|
40547
40698
|
name: "get_server_health_item",
|
|
40699
|
+
annotations: {
|
|
40700
|
+
readOnlyHint: true,
|
|
40701
|
+
destructiveHint: false,
|
|
40702
|
+
idempotentHint: true,
|
|
40703
|
+
openWorldHint: true
|
|
40704
|
+
},
|
|
40548
40705
|
description: "Get a single server health item by locator",
|
|
40549
40706
|
inputSchema: {
|
|
40550
40707
|
type: "object",
|
|
@@ -40569,6 +40726,12 @@ var DEV_TOOLS = [
|
|
|
40569
40726
|
// === Availability Policy Guard (read-only) ===
|
|
40570
40727
|
{
|
|
40571
40728
|
name: "check_availability_guard",
|
|
40729
|
+
annotations: {
|
|
40730
|
+
readOnlyHint: true,
|
|
40731
|
+
destructiveHint: false,
|
|
40732
|
+
idempotentHint: true,
|
|
40733
|
+
openWorldHint: true
|
|
40734
|
+
},
|
|
40572
40735
|
description: "Evaluate server health; returns ok=false if critical health items found (severity ERROR)",
|
|
40573
40736
|
inputSchema: {
|
|
40574
40737
|
type: "object",
|
|
@@ -40601,6 +40764,12 @@ var DEV_TOOLS = [
|
|
|
40601
40764
|
// === Agent Compatibility (read-only lookups) ===
|
|
40602
40765
|
{
|
|
40603
40766
|
name: "get_compatible_build_types_for_agent",
|
|
40767
|
+
annotations: {
|
|
40768
|
+
readOnlyHint: true,
|
|
40769
|
+
destructiveHint: false,
|
|
40770
|
+
idempotentHint: true,
|
|
40771
|
+
openWorldHint: true
|
|
40772
|
+
},
|
|
40604
40773
|
description: "Get build types compatible with the specified agent",
|
|
40605
40774
|
inputSchema: {
|
|
40606
40775
|
type: "object",
|
|
@@ -40624,6 +40793,12 @@ var DEV_TOOLS = [
|
|
|
40624
40793
|
},
|
|
40625
40794
|
{
|
|
40626
40795
|
name: "get_incompatible_build_types_for_agent",
|
|
40796
|
+
annotations: {
|
|
40797
|
+
readOnlyHint: true,
|
|
40798
|
+
destructiveHint: false,
|
|
40799
|
+
idempotentHint: true,
|
|
40800
|
+
openWorldHint: true
|
|
40801
|
+
},
|
|
40627
40802
|
description: "Get build types incompatible with the specified agent",
|
|
40628
40803
|
inputSchema: {
|
|
40629
40804
|
type: "object",
|
|
@@ -40647,6 +40822,12 @@ var DEV_TOOLS = [
|
|
|
40647
40822
|
},
|
|
40648
40823
|
{
|
|
40649
40824
|
name: "get_agent_enabled_info",
|
|
40825
|
+
annotations: {
|
|
40826
|
+
readOnlyHint: true,
|
|
40827
|
+
destructiveHint: false,
|
|
40828
|
+
idempotentHint: true,
|
|
40829
|
+
openWorldHint: true
|
|
40830
|
+
},
|
|
40650
40831
|
description: "Get the enabled/disabled state for an agent, including comment and switch time",
|
|
40651
40832
|
inputSchema: {
|
|
40652
40833
|
type: "object",
|
|
@@ -40670,6 +40851,12 @@ var DEV_TOOLS = [
|
|
|
40670
40851
|
},
|
|
40671
40852
|
{
|
|
40672
40853
|
name: "get_compatible_agents_for_build_type",
|
|
40854
|
+
annotations: {
|
|
40855
|
+
readOnlyHint: true,
|
|
40856
|
+
destructiveHint: false,
|
|
40857
|
+
idempotentHint: true,
|
|
40858
|
+
openWorldHint: true
|
|
40859
|
+
},
|
|
40673
40860
|
description: "List agents compatible with a build type (optionally filter enabled only)",
|
|
40674
40861
|
inputSchema: {
|
|
40675
40862
|
type: "object",
|
|
@@ -40705,6 +40892,12 @@ var DEV_TOOLS = [
|
|
|
40705
40892
|
},
|
|
40706
40893
|
{
|
|
40707
40894
|
name: "count_compatible_agents_for_build_type",
|
|
40895
|
+
annotations: {
|
|
40896
|
+
readOnlyHint: true,
|
|
40897
|
+
destructiveHint: false,
|
|
40898
|
+
idempotentHint: true,
|
|
40899
|
+
openWorldHint: true
|
|
40900
|
+
},
|
|
40708
40901
|
description: "Return only the count of enabled compatible agents for a build type",
|
|
40709
40902
|
inputSchema: {
|
|
40710
40903
|
type: "object",
|
|
@@ -40741,6 +40934,12 @@ var DEV_TOOLS = [
|
|
|
40741
40934
|
},
|
|
40742
40935
|
{
|
|
40743
40936
|
name: "get_compatible_agents_for_queued_build",
|
|
40937
|
+
annotations: {
|
|
40938
|
+
readOnlyHint: true,
|
|
40939
|
+
destructiveHint: false,
|
|
40940
|
+
idempotentHint: true,
|
|
40941
|
+
openWorldHint: true
|
|
40942
|
+
},
|
|
40744
40943
|
description: "List agents compatible with a queued/running build by buildId (optionally filter enabled only)",
|
|
40745
40944
|
inputSchema: {
|
|
40746
40945
|
type: "object",
|
|
@@ -40779,6 +40978,12 @@ var DEV_TOOLS = [
|
|
|
40779
40978
|
},
|
|
40780
40979
|
{
|
|
40781
40980
|
name: "check_teamcity_connection",
|
|
40981
|
+
annotations: {
|
|
40982
|
+
readOnlyHint: true,
|
|
40983
|
+
destructiveHint: false,
|
|
40984
|
+
idempotentHint: true,
|
|
40985
|
+
openWorldHint: true
|
|
40986
|
+
},
|
|
40782
40987
|
description: "Check connectivity to TeamCity server and basic readiness",
|
|
40783
40988
|
inputSchema: { type: "object", properties: {} },
|
|
40784
40989
|
handler: async (_args) => {
|
|
@@ -40791,6 +40996,12 @@ var DEV_TOOLS = [
|
|
|
40791
40996
|
// === Agent Tools ===
|
|
40792
40997
|
{
|
|
40793
40998
|
name: "list_agents",
|
|
40999
|
+
annotations: {
|
|
41000
|
+
readOnlyHint: true,
|
|
41001
|
+
destructiveHint: false,
|
|
41002
|
+
idempotentHint: true,
|
|
41003
|
+
openWorldHint: true
|
|
41004
|
+
},
|
|
40794
41005
|
description: "List build agents (supports pagination)",
|
|
40795
41006
|
inputSchema: {
|
|
40796
41007
|
type: "object",
|
|
@@ -40852,6 +41063,12 @@ var DEV_TOOLS = [
|
|
|
40852
41063
|
},
|
|
40853
41064
|
{
|
|
40854
41065
|
name: "list_agent_pools",
|
|
41066
|
+
annotations: {
|
|
41067
|
+
readOnlyHint: true,
|
|
41068
|
+
destructiveHint: false,
|
|
41069
|
+
idempotentHint: true,
|
|
41070
|
+
openWorldHint: true
|
|
41071
|
+
},
|
|
40855
41072
|
description: "List agent pools (supports pagination)",
|
|
40856
41073
|
inputSchema: {
|
|
40857
41074
|
type: "object",
|
|
@@ -40915,6 +41132,12 @@ var DEV_TOOLS = [
|
|
|
40915
41132
|
// Build Analysis Tools
|
|
40916
41133
|
{
|
|
40917
41134
|
name: "get_build_results",
|
|
41135
|
+
annotations: {
|
|
41136
|
+
readOnlyHint: true,
|
|
41137
|
+
destructiveHint: false,
|
|
41138
|
+
idempotentHint: true,
|
|
41139
|
+
openWorldHint: true
|
|
41140
|
+
},
|
|
40918
41141
|
description: "Get detailed results of a build including tests, artifacts, changes, and statistics",
|
|
40919
41142
|
inputSchema: {
|
|
40920
41143
|
type: "object",
|
|
@@ -41031,6 +41254,12 @@ var DEV_TOOLS = [
|
|
|
41031
41254
|
},
|
|
41032
41255
|
{
|
|
41033
41256
|
name: "download_build_artifact",
|
|
41257
|
+
annotations: {
|
|
41258
|
+
readOnlyHint: false,
|
|
41259
|
+
destructiveHint: false,
|
|
41260
|
+
idempotentHint: false,
|
|
41261
|
+
openWorldHint: true
|
|
41262
|
+
},
|
|
41034
41263
|
description: "Download a single artifact with optional streaming output",
|
|
41035
41264
|
inputSchema: {
|
|
41036
41265
|
type: "object",
|
|
@@ -41093,6 +41322,12 @@ var DEV_TOOLS = [
|
|
|
41093
41322
|
},
|
|
41094
41323
|
{
|
|
41095
41324
|
name: "download_build_artifacts",
|
|
41325
|
+
annotations: {
|
|
41326
|
+
readOnlyHint: false,
|
|
41327
|
+
destructiveHint: false,
|
|
41328
|
+
idempotentHint: false,
|
|
41329
|
+
openWorldHint: true
|
|
41330
|
+
},
|
|
41096
41331
|
description: "Download multiple artifacts with optional streaming output",
|
|
41097
41332
|
inputSchema: {
|
|
41098
41333
|
type: "object",
|
|
@@ -41255,6 +41490,12 @@ var DEV_TOOLS = [
|
|
|
41255
41490
|
},
|
|
41256
41491
|
{
|
|
41257
41492
|
name: "get_test_details",
|
|
41493
|
+
annotations: {
|
|
41494
|
+
readOnlyHint: true,
|
|
41495
|
+
destructiveHint: false,
|
|
41496
|
+
idempotentHint: true,
|
|
41497
|
+
openWorldHint: true
|
|
41498
|
+
},
|
|
41258
41499
|
description: "Get detailed information about test failures",
|
|
41259
41500
|
inputSchema: {
|
|
41260
41501
|
type: "object",
|
|
@@ -41286,6 +41527,12 @@ var DEV_TOOLS = [
|
|
|
41286
41527
|
},
|
|
41287
41528
|
{
|
|
41288
41529
|
name: "analyze_build_problems",
|
|
41530
|
+
annotations: {
|
|
41531
|
+
readOnlyHint: true,
|
|
41532
|
+
destructiveHint: false,
|
|
41533
|
+
idempotentHint: true,
|
|
41534
|
+
openWorldHint: true
|
|
41535
|
+
},
|
|
41289
41536
|
description: "Analyze and report build problems and failures",
|
|
41290
41537
|
inputSchema: {
|
|
41291
41538
|
type: "object",
|
|
@@ -41318,6 +41565,12 @@ var DEV_TOOLS = [
|
|
|
41318
41565
|
// === Changes, Problems & Diagnostics ===
|
|
41319
41566
|
{
|
|
41320
41567
|
name: "list_changes",
|
|
41568
|
+
annotations: {
|
|
41569
|
+
readOnlyHint: true,
|
|
41570
|
+
destructiveHint: false,
|
|
41571
|
+
idempotentHint: true,
|
|
41572
|
+
openWorldHint: true
|
|
41573
|
+
},
|
|
41321
41574
|
description: "List VCS changes (supports pagination)",
|
|
41322
41575
|
inputSchema: {
|
|
41323
41576
|
type: "object",
|
|
@@ -41388,6 +41641,12 @@ var DEV_TOOLS = [
|
|
|
41388
41641
|
},
|
|
41389
41642
|
{
|
|
41390
41643
|
name: "list_problems",
|
|
41644
|
+
annotations: {
|
|
41645
|
+
readOnlyHint: true,
|
|
41646
|
+
destructiveHint: false,
|
|
41647
|
+
idempotentHint: true,
|
|
41648
|
+
openWorldHint: true
|
|
41649
|
+
},
|
|
41391
41650
|
description: "List build problems (supports pagination)",
|
|
41392
41651
|
inputSchema: {
|
|
41393
41652
|
type: "object",
|
|
@@ -41458,6 +41717,12 @@ var DEV_TOOLS = [
|
|
|
41458
41717
|
},
|
|
41459
41718
|
{
|
|
41460
41719
|
name: "list_problem_occurrences",
|
|
41720
|
+
annotations: {
|
|
41721
|
+
readOnlyHint: true,
|
|
41722
|
+
destructiveHint: false,
|
|
41723
|
+
idempotentHint: true,
|
|
41724
|
+
openWorldHint: true
|
|
41725
|
+
},
|
|
41461
41726
|
description: "List problem occurrences (supports pagination)",
|
|
41462
41727
|
inputSchema: {
|
|
41463
41728
|
type: "object",
|
|
@@ -41534,6 +41799,12 @@ var DEV_TOOLS = [
|
|
|
41534
41799
|
},
|
|
41535
41800
|
{
|
|
41536
41801
|
name: "list_investigations",
|
|
41802
|
+
annotations: {
|
|
41803
|
+
readOnlyHint: true,
|
|
41804
|
+
destructiveHint: false,
|
|
41805
|
+
idempotentHint: true,
|
|
41806
|
+
openWorldHint: true
|
|
41807
|
+
},
|
|
41537
41808
|
description: "List open investigations (supports pagination)",
|
|
41538
41809
|
inputSchema: {
|
|
41539
41810
|
type: "object",
|
|
@@ -41617,6 +41888,12 @@ var DEV_TOOLS = [
|
|
|
41617
41888
|
},
|
|
41618
41889
|
{
|
|
41619
41890
|
name: "list_muted_tests",
|
|
41891
|
+
annotations: {
|
|
41892
|
+
readOnlyHint: true,
|
|
41893
|
+
destructiveHint: false,
|
|
41894
|
+
idempotentHint: true,
|
|
41895
|
+
openWorldHint: true
|
|
41896
|
+
},
|
|
41620
41897
|
description: "List muted tests (supports pagination)",
|
|
41621
41898
|
inputSchema: {
|
|
41622
41899
|
type: "object",
|
|
@@ -41693,6 +41970,12 @@ var DEV_TOOLS = [
|
|
|
41693
41970
|
},
|
|
41694
41971
|
{
|
|
41695
41972
|
name: "get_versioned_settings_status",
|
|
41973
|
+
annotations: {
|
|
41974
|
+
readOnlyHint: true,
|
|
41975
|
+
destructiveHint: false,
|
|
41976
|
+
idempotentHint: true,
|
|
41977
|
+
openWorldHint: true
|
|
41978
|
+
},
|
|
41696
41979
|
description: "Get Versioned Settings status for a locator",
|
|
41697
41980
|
inputSchema: {
|
|
41698
41981
|
type: "object",
|
|
@@ -41731,6 +42014,12 @@ var DEV_TOOLS = [
|
|
|
41731
42014
|
},
|
|
41732
42015
|
{
|
|
41733
42016
|
name: "list_users",
|
|
42017
|
+
annotations: {
|
|
42018
|
+
readOnlyHint: true,
|
|
42019
|
+
destructiveHint: false,
|
|
42020
|
+
idempotentHint: true,
|
|
42021
|
+
openWorldHint: true
|
|
42022
|
+
},
|
|
41734
42023
|
description: "List TeamCity users (supports pagination)",
|
|
41735
42024
|
inputSchema: {
|
|
41736
42025
|
type: "object",
|
|
@@ -41796,6 +42085,12 @@ var DEV_TOOLS = [
|
|
|
41796
42085
|
},
|
|
41797
42086
|
{
|
|
41798
42087
|
name: "list_roles",
|
|
42088
|
+
annotations: {
|
|
42089
|
+
readOnlyHint: true,
|
|
42090
|
+
destructiveHint: false,
|
|
42091
|
+
idempotentHint: true,
|
|
42092
|
+
openWorldHint: true
|
|
42093
|
+
},
|
|
41799
42094
|
description: "List defined roles and their permissions",
|
|
41800
42095
|
inputSchema: {
|
|
41801
42096
|
type: "object",
|
|
@@ -41824,6 +42119,12 @@ var DEV_TOOLS = [
|
|
|
41824
42119
|
},
|
|
41825
42120
|
{
|
|
41826
42121
|
name: "list_branches",
|
|
42122
|
+
annotations: {
|
|
42123
|
+
readOnlyHint: true,
|
|
42124
|
+
destructiveHint: false,
|
|
42125
|
+
idempotentHint: true,
|
|
42126
|
+
openWorldHint: true
|
|
42127
|
+
},
|
|
41827
42128
|
description: "List branches for a project or build configuration",
|
|
41828
42129
|
inputSchema: {
|
|
41829
42130
|
type: "object",
|
|
@@ -41858,6 +42159,12 @@ var DEV_TOOLS = [
|
|
|
41858
42159
|
},
|
|
41859
42160
|
{
|
|
41860
42161
|
name: "list_parameters",
|
|
42162
|
+
annotations: {
|
|
42163
|
+
readOnlyHint: true,
|
|
42164
|
+
destructiveHint: false,
|
|
42165
|
+
idempotentHint: true,
|
|
42166
|
+
openWorldHint: true
|
|
42167
|
+
},
|
|
41861
42168
|
description: "List parameters for a build configuration",
|
|
41862
42169
|
inputSchema: {
|
|
41863
42170
|
type: "object",
|
|
@@ -41885,6 +42192,12 @@ var DEV_TOOLS = [
|
|
|
41885
42192
|
},
|
|
41886
42193
|
{
|
|
41887
42194
|
name: "list_project_hierarchy",
|
|
42195
|
+
annotations: {
|
|
42196
|
+
readOnlyHint: true,
|
|
42197
|
+
destructiveHint: false,
|
|
42198
|
+
idempotentHint: true,
|
|
42199
|
+
openWorldHint: true
|
|
42200
|
+
},
|
|
41888
42201
|
description: "List project hierarchy showing parent-child relationships",
|
|
41889
42202
|
inputSchema: {
|
|
41890
42203
|
type: "object",
|
|
@@ -41935,6 +42248,12 @@ var FULL_MODE_TOOLS = [
|
|
|
41935
42248
|
// === Project Management Tools ===
|
|
41936
42249
|
{
|
|
41937
42250
|
name: "create_project",
|
|
42251
|
+
annotations: {
|
|
42252
|
+
readOnlyHint: false,
|
|
42253
|
+
destructiveHint: false,
|
|
42254
|
+
idempotentHint: false,
|
|
42255
|
+
openWorldHint: true
|
|
42256
|
+
},
|
|
41938
42257
|
description: "Create a new TeamCity project",
|
|
41939
42258
|
inputSchema: {
|
|
41940
42259
|
type: "object",
|
|
@@ -41976,6 +42295,12 @@ var FULL_MODE_TOOLS = [
|
|
|
41976
42295
|
},
|
|
41977
42296
|
{
|
|
41978
42297
|
name: "delete_project",
|
|
42298
|
+
annotations: {
|
|
42299
|
+
readOnlyHint: false,
|
|
42300
|
+
destructiveHint: true,
|
|
42301
|
+
idempotentHint: true,
|
|
42302
|
+
openWorldHint: true
|
|
42303
|
+
},
|
|
41979
42304
|
description: "Delete a TeamCity project",
|
|
41980
42305
|
inputSchema: {
|
|
41981
42306
|
type: "object",
|
|
@@ -41994,6 +42319,12 @@ var FULL_MODE_TOOLS = [
|
|
|
41994
42319
|
},
|
|
41995
42320
|
{
|
|
41996
42321
|
name: "update_project_settings",
|
|
42322
|
+
annotations: {
|
|
42323
|
+
readOnlyHint: false,
|
|
42324
|
+
destructiveHint: false,
|
|
42325
|
+
idempotentHint: true,
|
|
42326
|
+
openWorldHint: true
|
|
42327
|
+
},
|
|
41997
42328
|
description: "Update project settings and parameters",
|
|
41998
42329
|
inputSchema: {
|
|
41999
42330
|
type: "object",
|
|
@@ -42084,6 +42415,12 @@ var FULL_MODE_TOOLS = [
|
|
|
42084
42415
|
// === Build Configuration Management ===
|
|
42085
42416
|
{
|
|
42086
42417
|
name: "create_build_config",
|
|
42418
|
+
annotations: {
|
|
42419
|
+
readOnlyHint: false,
|
|
42420
|
+
destructiveHint: false,
|
|
42421
|
+
idempotentHint: false,
|
|
42422
|
+
openWorldHint: true
|
|
42423
|
+
},
|
|
42087
42424
|
description: "Create a new build configuration",
|
|
42088
42425
|
inputSchema: {
|
|
42089
42426
|
type: "object",
|
|
@@ -42113,6 +42450,12 @@ var FULL_MODE_TOOLS = [
|
|
|
42113
42450
|
},
|
|
42114
42451
|
{
|
|
42115
42452
|
name: "clone_build_config",
|
|
42453
|
+
annotations: {
|
|
42454
|
+
readOnlyHint: false,
|
|
42455
|
+
destructiveHint: false,
|
|
42456
|
+
idempotentHint: false,
|
|
42457
|
+
openWorldHint: true
|
|
42458
|
+
},
|
|
42116
42459
|
description: "Clone an existing build configuration",
|
|
42117
42460
|
inputSchema: {
|
|
42118
42461
|
type: "object",
|
|
@@ -42207,6 +42550,12 @@ var FULL_MODE_TOOLS = [
|
|
|
42207
42550
|
},
|
|
42208
42551
|
{
|
|
42209
42552
|
name: "update_build_config",
|
|
42553
|
+
annotations: {
|
|
42554
|
+
readOnlyHint: false,
|
|
42555
|
+
destructiveHint: false,
|
|
42556
|
+
idempotentHint: true,
|
|
42557
|
+
openWorldHint: true
|
|
42558
|
+
},
|
|
42210
42559
|
description: "Update build configuration settings",
|
|
42211
42560
|
inputSchema: {
|
|
42212
42561
|
type: "object",
|
|
@@ -42300,6 +42649,12 @@ var FULL_MODE_TOOLS = [
|
|
|
42300
42649
|
// === Dependency, Feature, and Requirement Management ===
|
|
42301
42650
|
{
|
|
42302
42651
|
name: "manage_build_dependencies",
|
|
42652
|
+
annotations: {
|
|
42653
|
+
readOnlyHint: false,
|
|
42654
|
+
destructiveHint: false,
|
|
42655
|
+
idempotentHint: true,
|
|
42656
|
+
openWorldHint: true
|
|
42657
|
+
},
|
|
42303
42658
|
description: "Add, update, or delete artifact and snapshot dependencies for a build configuration",
|
|
42304
42659
|
inputSchema: {
|
|
42305
42660
|
type: "object",
|
|
@@ -42442,6 +42797,12 @@ var FULL_MODE_TOOLS = [
|
|
|
42442
42797
|
},
|
|
42443
42798
|
{
|
|
42444
42799
|
name: "manage_build_features",
|
|
42800
|
+
annotations: {
|
|
42801
|
+
readOnlyHint: false,
|
|
42802
|
+
destructiveHint: false,
|
|
42803
|
+
idempotentHint: true,
|
|
42804
|
+
openWorldHint: true
|
|
42805
|
+
},
|
|
42445
42806
|
description: "Add, update, or delete build features such as ssh-agent or requirements enforcement",
|
|
42446
42807
|
inputSchema: {
|
|
42447
42808
|
type: "object",
|
|
@@ -42549,6 +42910,12 @@ var FULL_MODE_TOOLS = [
|
|
|
42549
42910
|
},
|
|
42550
42911
|
{
|
|
42551
42912
|
name: "manage_agent_requirements",
|
|
42913
|
+
annotations: {
|
|
42914
|
+
readOnlyHint: false,
|
|
42915
|
+
destructiveHint: false,
|
|
42916
|
+
idempotentHint: true,
|
|
42917
|
+
openWorldHint: true
|
|
42918
|
+
},
|
|
42552
42919
|
description: "Add, update, or delete build agent requirements for a configuration",
|
|
42553
42920
|
inputSchema: {
|
|
42554
42921
|
type: "object",
|
|
@@ -42695,6 +43062,12 @@ var FULL_MODE_TOOLS = [
|
|
|
42695
43062
|
},
|
|
42696
43063
|
{
|
|
42697
43064
|
name: "set_build_config_state",
|
|
43065
|
+
annotations: {
|
|
43066
|
+
readOnlyHint: false,
|
|
43067
|
+
destructiveHint: false,
|
|
43068
|
+
idempotentHint: true,
|
|
43069
|
+
openWorldHint: true
|
|
43070
|
+
},
|
|
42698
43071
|
description: "Enable or disable a build configuration by toggling its paused flag",
|
|
42699
43072
|
inputSchema: {
|
|
42700
43073
|
type: "object",
|
|
@@ -42740,6 +43113,12 @@ var FULL_MODE_TOOLS = [
|
|
|
42740
43113
|
// === VCS attachment ===
|
|
42741
43114
|
{
|
|
42742
43115
|
name: "add_vcs_root_to_build",
|
|
43116
|
+
annotations: {
|
|
43117
|
+
readOnlyHint: false,
|
|
43118
|
+
destructiveHint: false,
|
|
43119
|
+
idempotentHint: true,
|
|
43120
|
+
openWorldHint: true
|
|
43121
|
+
},
|
|
42743
43122
|
description: "Attach a VCS root to a build configuration",
|
|
42744
43123
|
inputSchema: {
|
|
42745
43124
|
type: "object",
|
|
@@ -42788,6 +43167,12 @@ var FULL_MODE_TOOLS = [
|
|
|
42788
43167
|
// === Parameter Management ===
|
|
42789
43168
|
{
|
|
42790
43169
|
name: "add_parameter",
|
|
43170
|
+
annotations: {
|
|
43171
|
+
readOnlyHint: false,
|
|
43172
|
+
destructiveHint: false,
|
|
43173
|
+
idempotentHint: true,
|
|
43174
|
+
openWorldHint: true
|
|
43175
|
+
},
|
|
42791
43176
|
description: "Add a parameter to a build configuration",
|
|
42792
43177
|
inputSchema: {
|
|
42793
43178
|
type: "object",
|
|
@@ -42829,6 +43214,12 @@ var FULL_MODE_TOOLS = [
|
|
|
42829
43214
|
},
|
|
42830
43215
|
{
|
|
42831
43216
|
name: "update_parameter",
|
|
43217
|
+
annotations: {
|
|
43218
|
+
readOnlyHint: false,
|
|
43219
|
+
destructiveHint: false,
|
|
43220
|
+
idempotentHint: true,
|
|
43221
|
+
openWorldHint: true
|
|
43222
|
+
},
|
|
42832
43223
|
description: "Update a build configuration parameter",
|
|
42833
43224
|
inputSchema: {
|
|
42834
43225
|
type: "object",
|
|
@@ -42871,6 +43262,12 @@ var FULL_MODE_TOOLS = [
|
|
|
42871
43262
|
},
|
|
42872
43263
|
{
|
|
42873
43264
|
name: "delete_parameter",
|
|
43265
|
+
annotations: {
|
|
43266
|
+
readOnlyHint: false,
|
|
43267
|
+
destructiveHint: true,
|
|
43268
|
+
idempotentHint: true,
|
|
43269
|
+
openWorldHint: true
|
|
43270
|
+
},
|
|
42874
43271
|
description: "Delete a parameter from a build configuration",
|
|
42875
43272
|
inputSchema: {
|
|
42876
43273
|
type: "object",
|
|
@@ -42899,6 +43296,12 @@ var FULL_MODE_TOOLS = [
|
|
|
42899
43296
|
// === Project Parameter Management ===
|
|
42900
43297
|
{
|
|
42901
43298
|
name: "list_project_parameters",
|
|
43299
|
+
annotations: {
|
|
43300
|
+
readOnlyHint: true,
|
|
43301
|
+
destructiveHint: false,
|
|
43302
|
+
idempotentHint: true,
|
|
43303
|
+
openWorldHint: true
|
|
43304
|
+
},
|
|
42902
43305
|
description: "List parameters for a project",
|
|
42903
43306
|
inputSchema: {
|
|
42904
43307
|
type: "object",
|
|
@@ -42920,6 +43323,12 @@ var FULL_MODE_TOOLS = [
|
|
|
42920
43323
|
},
|
|
42921
43324
|
{
|
|
42922
43325
|
name: "add_project_parameter",
|
|
43326
|
+
annotations: {
|
|
43327
|
+
readOnlyHint: false,
|
|
43328
|
+
destructiveHint: false,
|
|
43329
|
+
idempotentHint: true,
|
|
43330
|
+
openWorldHint: true
|
|
43331
|
+
},
|
|
42923
43332
|
description: "Add a parameter to a project",
|
|
42924
43333
|
inputSchema: {
|
|
42925
43334
|
type: "object",
|
|
@@ -42963,6 +43372,12 @@ var FULL_MODE_TOOLS = [
|
|
|
42963
43372
|
},
|
|
42964
43373
|
{
|
|
42965
43374
|
name: "update_project_parameter",
|
|
43375
|
+
annotations: {
|
|
43376
|
+
readOnlyHint: false,
|
|
43377
|
+
destructiveHint: false,
|
|
43378
|
+
idempotentHint: true,
|
|
43379
|
+
openWorldHint: true
|
|
43380
|
+
},
|
|
42966
43381
|
description: "Update a project parameter",
|
|
42967
43382
|
inputSchema: {
|
|
42968
43383
|
type: "object",
|
|
@@ -43005,6 +43420,12 @@ var FULL_MODE_TOOLS = [
|
|
|
43005
43420
|
},
|
|
43006
43421
|
{
|
|
43007
43422
|
name: "delete_project_parameter",
|
|
43423
|
+
annotations: {
|
|
43424
|
+
readOnlyHint: false,
|
|
43425
|
+
destructiveHint: true,
|
|
43426
|
+
idempotentHint: true,
|
|
43427
|
+
openWorldHint: true
|
|
43428
|
+
},
|
|
43008
43429
|
description: "Delete a parameter from a project",
|
|
43009
43430
|
inputSchema: {
|
|
43010
43431
|
type: "object",
|
|
@@ -43030,6 +43451,12 @@ var FULL_MODE_TOOLS = [
|
|
|
43030
43451
|
// === Output Parameter Management ===
|
|
43031
43452
|
{
|
|
43032
43453
|
name: "list_output_parameters",
|
|
43454
|
+
annotations: {
|
|
43455
|
+
readOnlyHint: true,
|
|
43456
|
+
destructiveHint: false,
|
|
43457
|
+
idempotentHint: true,
|
|
43458
|
+
openWorldHint: true
|
|
43459
|
+
},
|
|
43033
43460
|
description: "List output parameters for a build configuration",
|
|
43034
43461
|
inputSchema: {
|
|
43035
43462
|
type: "object",
|
|
@@ -43051,6 +43478,12 @@ var FULL_MODE_TOOLS = [
|
|
|
43051
43478
|
},
|
|
43052
43479
|
{
|
|
43053
43480
|
name: "add_output_parameter",
|
|
43481
|
+
annotations: {
|
|
43482
|
+
readOnlyHint: false,
|
|
43483
|
+
destructiveHint: false,
|
|
43484
|
+
idempotentHint: true,
|
|
43485
|
+
openWorldHint: true
|
|
43486
|
+
},
|
|
43054
43487
|
description: "Add an output parameter to a build configuration (for build chains)",
|
|
43055
43488
|
inputSchema: {
|
|
43056
43489
|
type: "object",
|
|
@@ -43085,6 +43518,12 @@ var FULL_MODE_TOOLS = [
|
|
|
43085
43518
|
},
|
|
43086
43519
|
{
|
|
43087
43520
|
name: "update_output_parameter",
|
|
43521
|
+
annotations: {
|
|
43522
|
+
readOnlyHint: false,
|
|
43523
|
+
destructiveHint: false,
|
|
43524
|
+
idempotentHint: true,
|
|
43525
|
+
openWorldHint: true
|
|
43526
|
+
},
|
|
43088
43527
|
description: "Update an output parameter in a build configuration",
|
|
43089
43528
|
inputSchema: {
|
|
43090
43529
|
type: "object",
|
|
@@ -43119,6 +43558,12 @@ var FULL_MODE_TOOLS = [
|
|
|
43119
43558
|
},
|
|
43120
43559
|
{
|
|
43121
43560
|
name: "delete_output_parameter",
|
|
43561
|
+
annotations: {
|
|
43562
|
+
readOnlyHint: false,
|
|
43563
|
+
destructiveHint: true,
|
|
43564
|
+
idempotentHint: true,
|
|
43565
|
+
openWorldHint: true
|
|
43566
|
+
},
|
|
43122
43567
|
description: "Delete an output parameter from a build configuration",
|
|
43123
43568
|
inputSchema: {
|
|
43124
43569
|
type: "object",
|
|
@@ -43147,6 +43592,12 @@ var FULL_MODE_TOOLS = [
|
|
|
43147
43592
|
// === VCS Root Management ===
|
|
43148
43593
|
{
|
|
43149
43594
|
name: "create_vcs_root",
|
|
43595
|
+
annotations: {
|
|
43596
|
+
readOnlyHint: false,
|
|
43597
|
+
destructiveHint: false,
|
|
43598
|
+
idempotentHint: false,
|
|
43599
|
+
openWorldHint: true
|
|
43600
|
+
},
|
|
43150
43601
|
description: "Create a new VCS root",
|
|
43151
43602
|
inputSchema: {
|
|
43152
43603
|
type: "object",
|
|
@@ -43185,6 +43636,12 @@ var FULL_MODE_TOOLS = [
|
|
|
43185
43636
|
// === Agent Management ===
|
|
43186
43637
|
{
|
|
43187
43638
|
name: "authorize_agent",
|
|
43639
|
+
annotations: {
|
|
43640
|
+
readOnlyHint: false,
|
|
43641
|
+
destructiveHint: false,
|
|
43642
|
+
idempotentHint: true,
|
|
43643
|
+
openWorldHint: true
|
|
43644
|
+
},
|
|
43188
43645
|
description: "Authorize or unauthorize a build agent",
|
|
43189
43646
|
inputSchema: {
|
|
43190
43647
|
type: "object",
|
|
@@ -43214,6 +43671,12 @@ var FULL_MODE_TOOLS = [
|
|
|
43214
43671
|
},
|
|
43215
43672
|
{
|
|
43216
43673
|
name: "assign_agent_to_pool",
|
|
43674
|
+
annotations: {
|
|
43675
|
+
readOnlyHint: false,
|
|
43676
|
+
destructiveHint: false,
|
|
43677
|
+
idempotentHint: true,
|
|
43678
|
+
openWorldHint: true
|
|
43679
|
+
},
|
|
43217
43680
|
description: "Assign an agent to a different pool",
|
|
43218
43681
|
inputSchema: {
|
|
43219
43682
|
type: "object",
|
|
@@ -43240,6 +43703,12 @@ var FULL_MODE_TOOLS = [
|
|
|
43240
43703
|
},
|
|
43241
43704
|
{
|
|
43242
43705
|
name: "remove_agent",
|
|
43706
|
+
annotations: {
|
|
43707
|
+
readOnlyHint: false,
|
|
43708
|
+
destructiveHint: true,
|
|
43709
|
+
idempotentHint: true,
|
|
43710
|
+
openWorldHint: true
|
|
43711
|
+
},
|
|
43243
43712
|
description: "Remove (delete) a build agent from the TeamCity server. Use this to clean up disconnected or ghost agent entries.",
|
|
43244
43713
|
inputSchema: {
|
|
43245
43714
|
type: "object",
|
|
@@ -43259,6 +43728,12 @@ var FULL_MODE_TOOLS = [
|
|
|
43259
43728
|
// === Build Step Management ===
|
|
43260
43729
|
{
|
|
43261
43730
|
name: "manage_build_steps",
|
|
43731
|
+
annotations: {
|
|
43732
|
+
readOnlyHint: false,
|
|
43733
|
+
destructiveHint: false,
|
|
43734
|
+
idempotentHint: true,
|
|
43735
|
+
openWorldHint: true
|
|
43736
|
+
},
|
|
43262
43737
|
description: "Add, update, or delete build steps",
|
|
43263
43738
|
inputSchema: {
|
|
43264
43739
|
type: "object",
|
|
@@ -43452,6 +43927,12 @@ var FULL_MODE_TOOLS = [
|
|
|
43452
43927
|
// === Build Trigger Management ===
|
|
43453
43928
|
{
|
|
43454
43929
|
name: "manage_build_triggers",
|
|
43930
|
+
annotations: {
|
|
43931
|
+
readOnlyHint: false,
|
|
43932
|
+
destructiveHint: false,
|
|
43933
|
+
idempotentHint: true,
|
|
43934
|
+
openWorldHint: true
|
|
43935
|
+
},
|
|
43455
43936
|
description: "Add, update, or delete build triggers",
|
|
43456
43937
|
inputSchema: {
|
|
43457
43938
|
type: "object",
|
|
@@ -43519,6 +44000,12 @@ var FULL_MODE_TOOLS = [
|
|
|
43519
44000
|
// === Batch pause/unpause specific build configurations ===
|
|
43520
44001
|
{
|
|
43521
44002
|
name: "set_build_configs_paused",
|
|
44003
|
+
annotations: {
|
|
44004
|
+
readOnlyHint: false,
|
|
44005
|
+
destructiveHint: false,
|
|
44006
|
+
idempotentHint: true,
|
|
44007
|
+
openWorldHint: true
|
|
44008
|
+
},
|
|
43522
44009
|
description: "Set paused/unpaused for a list of build configurations; optionally cancel queued",
|
|
43523
44010
|
inputSchema: {
|
|
43524
44011
|
type: "object",
|
|
@@ -43580,6 +44067,12 @@ var FULL_MODE_TOOLS = [
|
|
|
43580
44067
|
// === Test Administration ===
|
|
43581
44068
|
{
|
|
43582
44069
|
name: "mute_tests",
|
|
44070
|
+
annotations: {
|
|
44071
|
+
readOnlyHint: false,
|
|
44072
|
+
destructiveHint: false,
|
|
44073
|
+
idempotentHint: false,
|
|
44074
|
+
openWorldHint: true
|
|
44075
|
+
},
|
|
43583
44076
|
description: "Mute tests within a project or build configuration scope",
|
|
43584
44077
|
inputSchema: {
|
|
43585
44078
|
type: "object",
|
|
@@ -43671,6 +44164,12 @@ var FULL_MODE_TOOLS = [
|
|
|
43671
44164
|
// === Queue Maintenance ===
|
|
43672
44165
|
{
|
|
43673
44166
|
name: "move_queued_build_to_top",
|
|
44167
|
+
annotations: {
|
|
44168
|
+
readOnlyHint: false,
|
|
44169
|
+
destructiveHint: false,
|
|
44170
|
+
idempotentHint: false,
|
|
44171
|
+
openWorldHint: true
|
|
44172
|
+
},
|
|
43674
44173
|
description: "Move a queued build to the top of the queue",
|
|
43675
44174
|
inputSchema: {
|
|
43676
44175
|
type: "object",
|
|
@@ -43700,6 +44199,12 @@ var FULL_MODE_TOOLS = [
|
|
|
43700
44199
|
},
|
|
43701
44200
|
{
|
|
43702
44201
|
name: "reorder_queued_builds",
|
|
44202
|
+
annotations: {
|
|
44203
|
+
readOnlyHint: false,
|
|
44204
|
+
destructiveHint: false,
|
|
44205
|
+
idempotentHint: false,
|
|
44206
|
+
openWorldHint: true
|
|
44207
|
+
},
|
|
43703
44208
|
description: "Reorder queued builds by providing the desired sequence of IDs",
|
|
43704
44209
|
inputSchema: {
|
|
43705
44210
|
type: "object",
|
|
@@ -43729,6 +44234,12 @@ var FULL_MODE_TOOLS = [
|
|
|
43729
44234
|
},
|
|
43730
44235
|
{
|
|
43731
44236
|
name: "cancel_queued_builds_for_build_type",
|
|
44237
|
+
annotations: {
|
|
44238
|
+
readOnlyHint: false,
|
|
44239
|
+
destructiveHint: false,
|
|
44240
|
+
idempotentHint: false,
|
|
44241
|
+
openWorldHint: true
|
|
44242
|
+
},
|
|
43732
44243
|
description: "Cancel all queued builds for a specific build configuration",
|
|
43733
44244
|
inputSchema: {
|
|
43734
44245
|
type: "object",
|
|
@@ -43765,6 +44276,12 @@ var FULL_MODE_TOOLS = [
|
|
|
43765
44276
|
},
|
|
43766
44277
|
{
|
|
43767
44278
|
name: "cancel_queued_builds_by_locator",
|
|
44279
|
+
annotations: {
|
|
44280
|
+
readOnlyHint: false,
|
|
44281
|
+
destructiveHint: false,
|
|
44282
|
+
idempotentHint: false,
|
|
44283
|
+
openWorldHint: true
|
|
44284
|
+
},
|
|
43768
44285
|
description: "Cancel all queued builds matching a queue locator expression",
|
|
43769
44286
|
inputSchema: {
|
|
43770
44287
|
type: "object",
|
|
@@ -43801,6 +44318,12 @@ var FULL_MODE_TOOLS = [
|
|
|
43801
44318
|
// === Scoped Pause/Resume (by pool) ===
|
|
43802
44319
|
{
|
|
43803
44320
|
name: "pause_queue_for_pool",
|
|
44321
|
+
annotations: {
|
|
44322
|
+
readOnlyHint: false,
|
|
44323
|
+
destructiveHint: false,
|
|
44324
|
+
idempotentHint: true,
|
|
44325
|
+
openWorldHint: true
|
|
44326
|
+
},
|
|
43804
44327
|
description: "Disable all agents in a pool to pause queue processing; optionally cancel queued builds for a build type",
|
|
43805
44328
|
inputSchema: {
|
|
43806
44329
|
type: "object",
|
|
@@ -43873,6 +44396,12 @@ var FULL_MODE_TOOLS = [
|
|
|
43873
44396
|
},
|
|
43874
44397
|
{
|
|
43875
44398
|
name: "resume_queue_for_pool",
|
|
44399
|
+
annotations: {
|
|
44400
|
+
readOnlyHint: false,
|
|
44401
|
+
destructiveHint: false,
|
|
44402
|
+
idempotentHint: true,
|
|
44403
|
+
openWorldHint: true
|
|
44404
|
+
},
|
|
43876
44405
|
description: "Re-enable all agents in a pool to resume queue processing",
|
|
43877
44406
|
inputSchema: {
|
|
43878
44407
|
type: "object",
|
|
@@ -43917,6 +44446,12 @@ var FULL_MODE_TOOLS = [
|
|
|
43917
44446
|
// === Agent Enable/Disable ===
|
|
43918
44447
|
{
|
|
43919
44448
|
name: "set_agent_enabled",
|
|
44449
|
+
annotations: {
|
|
44450
|
+
readOnlyHint: false,
|
|
44451
|
+
destructiveHint: false,
|
|
44452
|
+
idempotentHint: true,
|
|
44453
|
+
openWorldHint: true
|
|
44454
|
+
},
|
|
43920
44455
|
description: "Enable/disable an agent, with optional comment and schedule",
|
|
43921
44456
|
inputSchema: {
|
|
43922
44457
|
type: "object",
|
|
@@ -43963,6 +44498,12 @@ var FULL_MODE_TOOLS = [
|
|
|
43963
44498
|
},
|
|
43964
44499
|
{
|
|
43965
44500
|
name: "bulk_set_agents_enabled",
|
|
44501
|
+
annotations: {
|
|
44502
|
+
readOnlyHint: false,
|
|
44503
|
+
destructiveHint: false,
|
|
44504
|
+
idempotentHint: true,
|
|
44505
|
+
openWorldHint: true
|
|
44506
|
+
},
|
|
43966
44507
|
description: "Bulk enable/disable agents selected by pool or locator; supports comment/schedule",
|
|
43967
44508
|
inputSchema: {
|
|
43968
44509
|
type: "object",
|
|
@@ -44050,6 +44591,12 @@ var FULL_MODE_TOOLS = [
|
|
|
44050
44591
|
// === SSH Key Management ===
|
|
44051
44592
|
{
|
|
44052
44593
|
name: "list_project_ssh_keys",
|
|
44594
|
+
annotations: {
|
|
44595
|
+
readOnlyHint: true,
|
|
44596
|
+
destructiveHint: false,
|
|
44597
|
+
idempotentHint: true,
|
|
44598
|
+
openWorldHint: true
|
|
44599
|
+
},
|
|
44053
44600
|
description: "List SSH keys configured for a project",
|
|
44054
44601
|
inputSchema: {
|
|
44055
44602
|
type: "object",
|
|
@@ -44076,6 +44623,12 @@ var FULL_MODE_TOOLS = [
|
|
|
44076
44623
|
},
|
|
44077
44624
|
{
|
|
44078
44625
|
name: "upload_project_ssh_key",
|
|
44626
|
+
annotations: {
|
|
44627
|
+
readOnlyHint: false,
|
|
44628
|
+
destructiveHint: false,
|
|
44629
|
+
idempotentHint: false,
|
|
44630
|
+
openWorldHint: true
|
|
44631
|
+
},
|
|
44079
44632
|
description: "Upload an SSH key to a project. Provide either privateKeyContent (raw PEM string) or privateKeyPath (path to key file), but not both.",
|
|
44080
44633
|
inputSchema: {
|
|
44081
44634
|
type: "object",
|
|
@@ -44120,6 +44673,12 @@ var FULL_MODE_TOOLS = [
|
|
|
44120
44673
|
},
|
|
44121
44674
|
{
|
|
44122
44675
|
name: "delete_project_ssh_key",
|
|
44676
|
+
annotations: {
|
|
44677
|
+
readOnlyHint: false,
|
|
44678
|
+
destructiveHint: true,
|
|
44679
|
+
idempotentHint: true,
|
|
44680
|
+
openWorldHint: true
|
|
44681
|
+
},
|
|
44123
44682
|
description: "Delete an SSH key from a project",
|
|
44124
44683
|
inputSchema: {
|
|
44125
44684
|
type: "object",
|
|
@@ -44186,7 +44745,8 @@ function createSimpleServer() {
|
|
|
44186
44745
|
tools: currentTools.map((tool) => ({
|
|
44187
44746
|
name: tool.name,
|
|
44188
44747
|
description: tool.description,
|
|
44189
|
-
inputSchema: tool.inputSchema
|
|
44748
|
+
inputSchema: tool.inputSchema,
|
|
44749
|
+
annotations: tool.annotations
|
|
44190
44750
|
}))
|
|
44191
44751
|
};
|
|
44192
44752
|
debug2("MCP response: tools/list", { count: response.tools.length, success: true });
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@daghis/teamcity-mcp",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.7.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",
|
|
@@ -101,8 +101,9 @@
|
|
|
101
101
|
"@hono/node-server": "^1.19.13",
|
|
102
102
|
"axios": "^1.15.0",
|
|
103
103
|
"body-parser": "^2.2.1",
|
|
104
|
+
"follow-redirects": "^1.16.0",
|
|
104
105
|
"glob@>=10.2.0 <10.5.0": "^10.5.0",
|
|
105
|
-
"hono": "^4.12.
|
|
106
|
+
"hono": "^4.12.14",
|
|
106
107
|
"js-yaml@<4.0.0": "^3.14.2",
|
|
107
108
|
"lodash-es": "^4.18.0",
|
|
108
109
|
"picomatch@>=2 <2.3.2": "^2.3.2",
|
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.7.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.7.0",
|
|
17
17
|
"runtimeHint": "npx",
|
|
18
18
|
"runtimeArguments": [
|
|
19
19
|
{
|