@daghis/teamcity-mcp 2.1.7 → 2.1.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # Changelog
2
2
 
3
+ ## [2.1.9](https://github.com/Daghis/teamcity-mcp/compare/teamcity-mcp-v2.1.8...teamcity-mcp-v2.1.9) (2026-02-06)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * eliminate intermittent test failures from cross-test file pollution ([#387](https://github.com/Daghis/teamcity-mcp/issues/387)) ([cabd563](https://github.com/Daghis/teamcity-mcp/commit/cabd56351247eaefe1411ebd91efc90618b5404c))
9
+
10
+ ## [2.1.8](https://github.com/Daghis/teamcity-mcp/compare/teamcity-mcp-v2.1.7...teamcity-mcp-v2.1.8) (2026-02-06)
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * return auto-generated stepId from manage_build_steps add action ([#385](https://github.com/Daghis/teamcity-mcp/issues/385)) ([549335c](https://github.com/Daghis/teamcity-mcp/commit/549335cbb16f24d5462fe3a630a171ba801ab799)), closes [#381](https://github.com/Daghis/teamcity-mcp/issues/381)
16
+
3
17
  ## [2.1.7](https://github.com/Daghis/teamcity-mcp/compare/teamcity-mcp-v2.1.6...teamcity-mcp-v2.1.7) (2026-02-05)
4
18
 
5
19
 
package/dist/index.js CHANGED
@@ -1207,7 +1207,7 @@ function debug2(message, meta) {
1207
1207
  // package.json
1208
1208
  var package_default = {
1209
1209
  name: "@daghis/teamcity-mcp",
1210
- version: "2.1.7",
1210
+ version: "2.1.9",
1211
1211
  description: "Model Control Protocol server for TeamCity CI/CD integration with AI coding assistants",
1212
1212
  mcpName: "io.github.Daghis/teamcity",
1213
1213
  main: "dist/index.js",
@@ -43095,7 +43095,10 @@ var FULL_MODE_TOOLS = [
43095
43095
  enum: ["add", "update", "delete"],
43096
43096
  description: "Action to perform"
43097
43097
  },
43098
- stepId: { type: "string", description: "Step ID (for update/delete)" },
43098
+ stepId: {
43099
+ type: "string",
43100
+ description: "Step ID (required for update/delete; ignored by TeamCity for add \u2014 IDs are auto-generated)"
43101
+ },
43099
43102
  name: { type: "string", description: "Step name" },
43100
43103
  type: { type: "string", description: "Step type (e.g., simpleRunner)" },
43101
43104
  properties: { type: "object", description: "Step properties" }
@@ -43154,7 +43157,7 @@ var FULL_MODE_TOOLS = [
43154
43157
  property: Object.entries(stepProps).map(([k, v]) => ({ name: k, value: v }))
43155
43158
  }
43156
43159
  };
43157
- await adapter.modules.buildTypes.addBuildStepToBuildType(
43160
+ const response = await adapter.modules.buildTypes.addBuildStepToBuildType(
43158
43161
  typedArgs.buildTypeId,
43159
43162
  void 0,
43160
43163
  step,
@@ -43162,10 +43165,12 @@ var FULL_MODE_TOOLS = [
43162
43165
  headers: { "Content-Type": "application/json", Accept: "application/json" }
43163
43166
  }
43164
43167
  );
43168
+ const created = response.data;
43165
43169
  return json({
43166
43170
  success: true,
43167
43171
  action: "add_build_step",
43168
- buildTypeId: typedArgs.buildTypeId
43172
+ buildTypeId: typedArgs.buildTypeId,
43173
+ stepId: created?.id
43169
43174
  });
43170
43175
  }
43171
43176
  case "update": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@daghis/teamcity-mcp",
3
- "version": "2.1.7",
3
+ "version": "2.1.9",
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.1.7",
10
+ "version": "2.1.9",
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.1.7",
16
+ "version": "2.1.9",
17
17
  "runtimeHint": "npx",
18
18
  "runtimeArguments": [
19
19
  {