@daghis/teamcity-mcp 1.2.1 → 1.3.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 +20 -0
- package/README.md +10 -6
- package/dist/index.js +11011 -4763
- package/dist/index.js.map +4 -4
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.3.1](https://github.com/Daghis/teamcity-mcp/compare/v1.3.0...v1.3.1) (2025-09-16)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* **teamcity:** route results + problems via shared client ([#111](https://github.com/Daghis/teamcity-mcp/issues/111)) ([3797bb5](https://github.com/Daghis/teamcity-mcp/commit/3797bb57d8421e2cb243112a9b1cdfda92fff1f7))
|
|
9
|
+
|
|
10
|
+
## [1.3.0](https://github.com/Daghis/teamcity-mcp/compare/v1.2.1...v1.3.0) (2025-09-16)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Features
|
|
14
|
+
|
|
15
|
+
* **tools:** expose change and admin REST tools ([#112](https://github.com/Daghis/teamcity-mcp/issues/112)) ([e7f4e1e](https://github.com/Daghis/teamcity-mcp/commit/e7f4e1e74bb28572ffc3ee7a0fced6090c4f92ef))
|
|
16
|
+
|
|
17
|
+
## [Unreleased]
|
|
18
|
+
|
|
19
|
+
### Features
|
|
20
|
+
|
|
21
|
+
* **tools:** expose change, problem, investigation, mute, versioned-settings, and user/role MCP tools ([#107](https://github.com/Daghis/teamcity-mcp/issues/107))
|
|
22
|
+
|
|
3
23
|
## [1.2.1](https://github.com/Daghis/teamcity-mcp/compare/v1.2.0...v1.2.1) (2025-09-16)
|
|
4
24
|
|
|
5
25
|
|
package/README.md
CHANGED
|
@@ -181,6 +181,8 @@ const newBuild = await api.triggerBuild('BuildConfigId', {
|
|
|
181
181
|
});
|
|
182
182
|
```
|
|
183
183
|
|
|
184
|
+
> **Note:** The legacy helpers exported from `src/teamcity/index.ts` remain only for compatibility and include placeholder implementations. Prefer the MCP tools (see the reference linked above) or the `TeamCityAPI` shown here when automating workflows.
|
|
185
|
+
|
|
184
186
|
## Development
|
|
185
187
|
|
|
186
188
|
```bash
|
|
@@ -248,12 +250,14 @@ The MCP server exposes tools for TeamCity operations. Each tool corresponds to s
|
|
|
248
250
|
- Build steps (script, Maven, Gradle, npm, Docker, PowerShell)
|
|
249
251
|
- Triggers (VCS, schedule, finish-build, maven-snapshot)
|
|
250
252
|
- Parameters and template-based configurations
|
|
251
|
-
- See the Tool Reference
|
|
252
|
-
- `
|
|
253
|
-
- `
|
|
254
|
-
- `
|
|
255
|
-
|
|
256
|
-
|
|
253
|
+
- See the [MCP Tool Reference](docs/mcp-tools-reference.md) for argument details and additional options.
|
|
254
|
+
- `clone_build_config` - Duplicate existing configurations into any project, preserving steps, triggers, and parameters.
|
|
255
|
+
- `update_build_config` - Adjust names, descriptions, artifact rules, and pause state for a configuration.
|
|
256
|
+
- `manage_build_steps` - Add, update, remove, or reorder build steps through a single tool surface.
|
|
257
|
+
- `manage_build_triggers` - Add or delete build triggers with full property support.
|
|
258
|
+
- `create_vcs_root` & `add_vcs_root_to_build` - Define VCS roots and attach them to build configurations.
|
|
259
|
+
|
|
260
|
+
See also: [`docs/TEAMCITY_MCP_TOOLS_GUIDE.md`](docs/TEAMCITY_MCP_TOOLS_GUIDE.md) for expanded workflows and examples that align with the current MCP implementation.
|
|
257
261
|
|
|
258
262
|
## Contributing
|
|
259
263
|
|