bc-telemetry-buddy-mcp 3.3.0 → 3.3.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 CHANGED
@@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [3.3.2] - 2026-04-06
11
+
12
+ ### Changed
13
+ - **Community KB contributions now create a GitHub Issue instead of a PR**: The `save_knowledge` tool (`target: "community"`) no longer requires forking the repo or creating a branch. With a token (`BCTB_GITHUB_TOKEN` / `knowledgeBase.githubToken`, scope `public_repo`), an issue is created automatically. Without a token, a pre-filled `issues/new` URL and the full article body are returned so the user can submit manually — no error thrown.
14
+ - `KBContributeResult.prUrl` renamed to `issueUrl`.
15
+ - `knowledgeBase.githubToken` in `config-schema.json` updated to reflect reduced scope requirement.
16
+
17
+ ## [3.3.1] - 2026-04-06
18
+
19
+ ### Added
20
+ - **Telemetry for Knowledge Base MCP tools**: Dedicated event IDs (`TB-MCP-108` for `get_knowledge`, `TB-MCP-109` for `save_knowledge`) added to `telemetryEvents.ts`. `trackEvent` calls wired into `get_knowledge` and `save_knowledge` handlers in `toolHandlers.ts`.
21
+
10
22
  ## [3.3.0] - 2026-04-05
11
23
 
12
24
  ### Added
@@ -133,7 +133,7 @@
133
133
  },
134
134
  "githubToken": {
135
135
  "type": "string",
136
- "description": "GitHub personal access token for community KB contributions (PR creation). Can also be set via BCTB_GITHUB_TOKEN env var.",
136
+ "description": "GitHub personal access token for community KB contributions (issue creation). Requires issues:write scope. Can also be set via BCTB_GITHUB_TOKEN env var. Optional — without a token the tool returns a pre-filled issues/new URL and article body for manual submission.",
137
137
  "default": ""
138
138
  }
139
139
  }