@daghis/teamcity-mcp 0.2.1 → 0.9.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 +5 -0
- package/README.md +19 -2
- package/dist/index.js +0 -1
- package/dist/index.js.map +2 -2
- package/dist/src/index.d.ts +0 -1
- package/package.json +4 -1
- package/src/index.ts +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.9.1](https://github.com/Daghis/teamcity-mcp/compare/v0.9.0...v0.9.1) (2025-09-12)
|
|
4
|
+
|
|
5
|
+
### Bug Fixes
|
|
6
|
+
- Fix CLI execution via npx by removing duplicate shebang line in `src/index.ts` and relying on build banner. This resolves `sh: teamcity-mcp: command not found` / `Invalid or unexpected token` when running `npx -y @daghis/teamcity-mcp`.
|
|
7
|
+
|
|
3
8
|
## [0.2.1](https://github.com/Daghis/teamcity-mcp/compare/v0.2.0...v0.2.1) (2025-09-12)
|
|
4
9
|
|
|
5
10
|
|
package/README.md
CHANGED
|
@@ -66,10 +66,27 @@ cp .env.example .env
|
|
|
66
66
|
npm run dev
|
|
67
67
|
```
|
|
68
68
|
|
|
69
|
-
### npm Package
|
|
69
|
+
### npm Package
|
|
70
|
+
|
|
71
|
+
Run the MCP server via npx (requires Node 20.x). Set your TeamCity environment variables inline or via a `.env` in the working directory.
|
|
72
|
+
|
|
73
|
+
```bash
|
|
74
|
+
# One-off run (inline envs)
|
|
75
|
+
TEAMCITY_URL="https://teamcity.example.com" \
|
|
76
|
+
TEAMCITY_TOKEN="tc_<your_token>" \
|
|
77
|
+
MCP_MODE=dev \
|
|
78
|
+
npx -y @daghis/teamcity-mcp
|
|
79
|
+
|
|
80
|
+
# Or rely on .env in the current directory
|
|
81
|
+
npx -y @daghis/teamcity-mcp
|
|
82
|
+
```
|
|
83
|
+
|
|
84
|
+
Register with Claude Code’s MCP (user scope):
|
|
70
85
|
|
|
71
86
|
```bash
|
|
72
|
-
|
|
87
|
+
claude mcp add teamcity -s user \
|
|
88
|
+
-- env TEAMCITY_URL="https://teamcity.example.com" TEAMCITY_TOKEN="tc_<your_token>" MCP_MODE=dev \
|
|
89
|
+
npx -y @daghis/teamcity-mcp
|
|
73
90
|
```
|
|
74
91
|
|
|
75
92
|
## Configuration
|