bc-telemetry-buddy-mcp 2.0.5 → 2.1.0
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 +17 -0
- package/dist/cli.js +57 -57
- package/dist/cli.js.map +2 -2
- package/dist/server.js +48 -48
- package/dist/server.js.map +2 -2
- package/package.json +1 -1
- package/src/__tests__/config.test.ts +6 -3
- package/src/__tests__/graceful-startup.test.ts +99 -0
- package/src/config.ts +8 -2
- package/src/server.ts +48 -3
- package/src/version.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [2.1.0] - 2025-11-21
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- New features and improvements (minor release)
|
|
15
|
+
|
|
16
|
+
### Changed
|
|
17
|
+
|
|
18
|
+
- **Graceful startup with incomplete configuration**: MCP server now starts successfully even when configuration is incomplete, instead of failing with exit code 1
|
|
19
|
+
- Configuration validation moved from startup (throwing errors) to runtime (returning helpful error messages through MCP interface)
|
|
20
|
+
- Error messages are now MCP-client agnostic, providing guidance for both VSCode extension users and standalone MCP client users (Claude Desktop, etc.)
|
|
21
|
+
|
|
22
|
+
### Fixed
|
|
23
|
+
|
|
24
|
+
- Server no longer fails to start in workspaces without BC Telemetry Buddy configuration
|
|
25
|
+
- Missing `BCTB_WORKSPACE_PATH` now uses `process.cwd()` as fallback instead of throwing error
|
|
26
|
+
|
|
10
27
|
## [2.0.5] - 2025-11-19
|
|
11
28
|
|
|
12
29
|
### Fixed
|