@daghis/teamcity-mcp 2.12.0 → 2.12.1

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.12.1](https://github.com/Daghis/teamcity-mcp/compare/teamcity-mcp-v2.12.0...teamcity-mcp-v2.12.1) (2026-05-12)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * **tools:** mark download_* as readOnly and idempotent ([#507](https://github.com/Daghis/teamcity-mcp/issues/507)) ([0a09663](https://github.com/Daghis/teamcity-mcp/commit/0a09663a5ff39e82f9b471e1aa7102ffc4d68163))
9
+
3
10
  ## [2.12.0](https://github.com/Daghis/teamcity-mcp/compare/teamcity-mcp-v2.11.0...teamcity-mcp-v2.12.0) (2026-05-03)
4
11
 
5
12
 
package/README.md CHANGED
@@ -47,6 +47,24 @@ See the [Tools Mode Matrix](docs/mcp-tools-mode-matrix.md) for the complete list
47
47
  - Performance-conscious: fast startup with minimal overhead
48
48
  - Clean codebase with clear module boundaries
49
49
 
50
+ ## Choosing between teamcity-mcp and the built-in MCP
51
+
52
+ TeamCity 2026.1 ships with a built-in MCP endpoint at `<server-url>/app/mcp` exposing three tools: build log retrieval, a generic REST GET, and a build trigger (forced to `personal=true`). It is server-resident, requires no install, and is a sensible default for read-and-rerun workflows.
53
+
54
+ teamcity-mcp is a different shape: an 87-tool typed surface focused on AI-driven workflows that need writes, multi-server support, or pre-2026.1 compatibility.
55
+
56
+ | Use case | Recommendation |
57
+ | --------------------------------------------------------------------- | ------------------------------------------------------------------------------------------ |
58
+ | Read build logs, trigger builds, simple read flows | Built-in (TeamCity 2026.1+) — zero install |
59
+ | Manage parameters, agents, queue, mutes, build configs, VCS roots | teamcity-mcp |
60
+ | TeamCity server older than 2026.1 | teamcity-mcp |
61
+ | Multi-server / multi-tenant deployment | teamcity-mcp (HTTP transport — [PR #491](https://github.com/Daghis/teamcity-mcp/pull/491)) |
62
+ | Typed tool surface for better agent reliability on chained operations | teamcity-mcp |
63
+
64
+ Both can coexist. The built-in is a good first stop; teamcity-mcp is the power tool for everything the built-in doesn't reach.
65
+
66
+ For the design reasoning, see [docs/strategy.md](docs/strategy.md) and [docs/non-goals.md](docs/non-goals.md).
67
+
50
68
  ## Installation
51
69
 
52
70
  ### Prerequisites
@@ -110,7 +128,14 @@ On Windows, Claude Code's MCP configuration [may not properly merge environment
110
128
  "mcpServers": {
111
129
  "teamcity": {
112
130
  "command": "npx",
113
- "args": ["-y", "@daghis/teamcity-mcp", "--url", "https://teamcity.example.com", "--token", "YOUR_TOKEN"]
131
+ "args": [
132
+ "-y",
133
+ "@daghis/teamcity-mcp",
134
+ "--url",
135
+ "https://teamcity.example.com",
136
+ "--token",
137
+ "YOUR_TOKEN"
138
+ ]
114
139
  }
115
140
  }
116
141
  }
@@ -359,4 +384,4 @@ This repository has GitHub secret scanning and push protection enabled. See [SEC
359
384
 
360
385
  ---
361
386
 
362
- Built with ❤️ for developers who love efficient CI/CD workflows
387
+ Built with ❤️ for developers who love efficient CI/CD workflows
package/dist/index.js CHANGED
@@ -1216,7 +1216,7 @@ function debug2(message, meta) {
1216
1216
  // package.json
1217
1217
  var package_default = {
1218
1218
  name: "@daghis/teamcity-mcp",
1219
- version: "2.12.0",
1219
+ version: "2.12.1",
1220
1220
  description: "Model Control Protocol server for TeamCity CI/CD integration with AI coding assistants",
1221
1221
  mcpName: "io.github.Daghis/teamcity",
1222
1222
  main: "dist/index.js",
@@ -1280,7 +1280,7 @@ var package_default = {
1280
1280
  url: "https://github.com/Daghis/teamcity-mcp/issues"
1281
1281
  },
1282
1282
  dependencies: {
1283
- "@modelcontextprotocol/sdk": "^1.27.0",
1283
+ "@modelcontextprotocol/sdk": "^1.29.0",
1284
1284
  axios: "^1.15.0",
1285
1285
  "axios-retry": "^4.5.0",
1286
1286
  dotenv: "17.4.2",
@@ -41544,9 +41544,9 @@ var DEV_TOOLS = [
41544
41544
  {
41545
41545
  name: "download_build_artifact",
41546
41546
  annotations: {
41547
- readOnlyHint: false,
41547
+ readOnlyHint: true,
41548
41548
  destructiveHint: false,
41549
- idempotentHint: false,
41549
+ idempotentHint: true,
41550
41550
  openWorldHint: true
41551
41551
  },
41552
41552
  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.",
@@ -41612,9 +41612,9 @@ var DEV_TOOLS = [
41612
41612
  {
41613
41613
  name: "download_build_artifacts",
41614
41614
  annotations: {
41615
- readOnlyHint: false,
41615
+ readOnlyHint: true,
41616
41616
  destructiveHint: false,
41617
- idempotentHint: false,
41617
+ idempotentHint: true,
41618
41618
  openWorldHint: true
41619
41619
  },
41620
41620
  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.",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@daghis/teamcity-mcp",
3
- "version": "2.12.0",
3
+ "version": "2.12.1",
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",
@@ -64,7 +64,7 @@
64
64
  "url": "https://github.com/Daghis/teamcity-mcp/issues"
65
65
  },
66
66
  "dependencies": {
67
- "@modelcontextprotocol/sdk": "^1.27.0",
67
+ "@modelcontextprotocol/sdk": "^1.29.0",
68
68
  "axios": "^1.15.0",
69
69
  "axios-retry": "^4.5.0",
70
70
  "dotenv": "17.4.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.12.0",
10
+ "version": "2.12.1",
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.12.0",
16
+ "version": "2.12.1",
17
17
  "runtimeHint": "npx",
18
18
  "runtimeArguments": [
19
19
  {