@daghis/teamcity-mcp 2.2.0 → 2.2.2
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 +14 -0
- package/CLAUDE.md +10 -0
- package/dist/index.js +6 -8
- package/package.json +2 -2
- package/server.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [2.2.2](https://github.com/Daghis/teamcity-mcp/compare/teamcity-mcp-v2.2.1...teamcity-mcp-v2.2.2) (2026-02-28)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* remove stray dotenv.config() from config module ([#404](https://github.com/Daghis/teamcity-mcp/issues/404)) ([4e5bc2c](https://github.com/Daghis/teamcity-mcp/commit/4e5bc2cb1f9f3617e796f35a7a504e41dca00f3b)), closes [#400](https://github.com/Daghis/teamcity-mcp/issues/400)
|
|
9
|
+
|
|
10
|
+
## [2.2.1](https://github.com/Daghis/teamcity-mcp/compare/teamcity-mcp-v2.2.0...teamcity-mcp-v2.2.1) (2026-02-14)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* **deps:** update qs to 6.14.2 to fix DoS vulnerability ([#397](https://github.com/Daghis/teamcity-mcp/issues/397)) ([39f6b28](https://github.com/Daghis/teamcity-mcp/commit/39f6b28489f8e167f62adbf84ac6126ddfbb17f7))
|
|
16
|
+
|
|
3
17
|
## [2.2.0](https://github.com/Daghis/teamcity-mcp/compare/teamcity-mcp-v2.1.10...teamcity-mcp-v2.2.0) (2026-02-12)
|
|
4
18
|
|
|
5
19
|
|
package/CLAUDE.md
CHANGED
|
@@ -68,3 +68,13 @@ When Marc says he wants to "check-in with GitHub", run these steps:
|
|
|
68
68
|
2. Check new issues
|
|
69
69
|
3. Check new PRs
|
|
70
70
|
4. Check security alerts
|
|
71
|
+
|
|
72
|
+
## Git Workflow
|
|
73
|
+
|
|
74
|
+
Before starting any work that will result in a commit/PR, always pull the latest `main` first:
|
|
75
|
+
|
|
76
|
+
```bash
|
|
77
|
+
git checkout main && git pull origin main
|
|
78
|
+
```
|
|
79
|
+
|
|
80
|
+
Then create the feature branch from that up-to-date main. This avoids "branch is out-of-date" warnings on PRs.
|
package/dist/index.js
CHANGED
|
@@ -571,12 +571,10 @@ var init_build_status_manager = __esm({
|
|
|
571
571
|
|
|
572
572
|
// src/index.ts
|
|
573
573
|
var import_stdio = require("@modelcontextprotocol/sdk/server/stdio.js");
|
|
574
|
-
var
|
|
574
|
+
var dotenv = __toESM(require("dotenv"));
|
|
575
575
|
|
|
576
576
|
// src/config/index.ts
|
|
577
|
-
var import_dotenv = __toESM(require("dotenv"));
|
|
578
577
|
var import_zod = require("zod");
|
|
579
|
-
import_dotenv.default.config();
|
|
580
578
|
var envSchema = import_zod.z.object({
|
|
581
579
|
NODE_ENV: import_zod.z.enum(["development", "production", "test"]).default("development"),
|
|
582
580
|
PORT: import_zod.z.string().default("3000").transform(Number),
|
|
@@ -900,12 +898,12 @@ For more information, visit: https://github.com/Daghis/teamcity-mcp
|
|
|
900
898
|
}
|
|
901
899
|
|
|
902
900
|
// src/utils/env-file.ts
|
|
903
|
-
var
|
|
901
|
+
var import_dotenv = require("dotenv");
|
|
904
902
|
var import_fs2 = require("fs");
|
|
905
903
|
function loadEnvFile(filepath) {
|
|
906
904
|
try {
|
|
907
905
|
const content = (0, import_fs2.readFileSync)(filepath, "utf-8");
|
|
908
|
-
const values = (0,
|
|
906
|
+
const values = (0, import_dotenv.parse)(content);
|
|
909
907
|
return {
|
|
910
908
|
success: true,
|
|
911
909
|
values
|
|
@@ -1207,7 +1205,7 @@ function debug2(message, meta) {
|
|
|
1207
1205
|
// package.json
|
|
1208
1206
|
var package_default = {
|
|
1209
1207
|
name: "@daghis/teamcity-mcp",
|
|
1210
|
-
version: "2.2.
|
|
1208
|
+
version: "2.2.2",
|
|
1211
1209
|
description: "Model Control Protocol server for TeamCity CI/CD integration with AI coding assistants",
|
|
1212
1210
|
mcpName: "io.github.Daghis/teamcity",
|
|
1213
1211
|
main: "dist/index.js",
|
|
@@ -1274,7 +1272,7 @@ var package_default = {
|
|
|
1274
1272
|
"@modelcontextprotocol/sdk": "^1.26.0",
|
|
1275
1273
|
axios: "^1.13.5",
|
|
1276
1274
|
"axios-retry": "^4.5.0",
|
|
1277
|
-
dotenv: "17.
|
|
1275
|
+
dotenv: "17.3.1",
|
|
1278
1276
|
tslib: "^2.8.1",
|
|
1279
1277
|
winston: "^3.11.0",
|
|
1280
1278
|
zod: "^4.3.5"
|
|
@@ -44045,7 +44043,7 @@ if (cliArgs.config) {
|
|
|
44045
44043
|
}
|
|
44046
44044
|
}
|
|
44047
44045
|
}
|
|
44048
|
-
|
|
44046
|
+
dotenv.config({ quiet: true });
|
|
44049
44047
|
if (cliArgs.url) {
|
|
44050
44048
|
process.env["TEAMCITY_URL"] = cliArgs.url;
|
|
44051
44049
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@daghis/teamcity-mcp",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.2",
|
|
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",
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
"@modelcontextprotocol/sdk": "^1.26.0",
|
|
68
68
|
"axios": "^1.13.5",
|
|
69
69
|
"axios-retry": "^4.5.0",
|
|
70
|
-
"dotenv": "17.
|
|
70
|
+
"dotenv": "17.3.1",
|
|
71
71
|
"tslib": "^2.8.1",
|
|
72
72
|
"winston": "^3.11.0",
|
|
73
73
|
"zod": "^4.3.5"
|
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.2.
|
|
10
|
+
"version": "2.2.2",
|
|
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.2.
|
|
16
|
+
"version": "2.2.2",
|
|
17
17
|
"runtimeHint": "npx",
|
|
18
18
|
"runtimeArguments": [
|
|
19
19
|
{
|