bc-telemetry-buddy-mcp 3.1.0 → 3.1.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,25 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [3.1.2] - 2026-03-02
11
+
12
+ ### Added
13
+ - **Retry Logic with Exponential Backoff**: LLM API calls now automatically retry on transient errors (HTTP 429, 529, 503) with configurable exponential backoff. Default: 10 retries, 2s initial delay, 2x multiplier, 60s max delay. Configurable via `retry` section in agent config.
14
+
15
+ ### Improved
16
+ - **Dynamic Pipeline Templates**: `generateAzureDevOpsYaml()` and `generateGitHubActionsYaml()` now accept `PipelineOptions` (LLM provider, branch name, variable group name) for customizable CI/CD pipeline generation
17
+ - **Azure DevOps Pipeline Template**: Updated to use inline `export` for npm prefix/PATH (self-hosted agent compatibility), `BCTB_WORKSPACE_PATH`, branch-based triggers, and dual LLM key support (Azure OpenAI / Anthropic)
18
+ - **Template READMEs**: Added sections for custom branch, self-hosted agents, Anthropic usage, and new troubleshooting entries (EACCES, git push)
19
+
20
+ ### Changed
21
+ - **Agentic Monitoring marked as Preview**: All user-facing references now include "(Preview)" label with disclaimer notes in README
22
+
23
+ ## [3.1.1] - 2025-06-04
24
+
25
+ ### Improved
26
+ - **Pipeline Templates — Slimmed Secrets**: GitHub Actions and Azure DevOps templates now list only 3 required secrets (`BCTB_CLIENT_ID`, `BCTB_CLIENT_SECRET`, LLM API key) plus commented-out action secrets. Non-sensitive config values (tenant ID, App Insights ID, Kusto URL, LLM endpoint/deployment) are read from `.bctb-config.json` at runtime.
27
+ - **Template READMEs — Split Secrets Tables**: Secrets tables split into "Always Required" and "Only If You Configured These Actions" sections with clear provenance notes
28
+
10
29
  ## [3.1.0] - 2026-02-26
11
30
 
12
31
  ### Added
package/README.md CHANGED
@@ -15,7 +15,7 @@ BC Telemetry Buddy MCP Server is a **standalone NPM package** that enables AI as
15
15
  - 🔧 **CLI Interface**: `bctb-mcp` command with init, validate, test-auth, start, and **agent** subcommands
16
16
  - 📁 **File-Based Config**: Simple `.bctb-config.json` with schema validation and environment variable substitution
17
17
  - 👥 **Multi-Profile Support**: Manage multiple customers/environments in single config file with profile switching
18
- - 🤖 **Agentic Monitoring**: Autonomous scheduled telemetry monitoring via CI/CD pipelines — LLM-powered reasoning, issue tracking, Teams/email alerts
18
+ - 🤖 **Agentic Monitoring (Preview)**: Autonomous scheduled telemetry monitoring via CI/CD pipelines — LLM-powered reasoning, issue tracking, Teams/email alerts
19
19
  - 🔌 **Optional for VSCode**: VSCode extension works standalone; MCP only required for chat participant features
20
20
  - 🔄 **Automatic Updates**: Update notifications on startup when newer versions are available on NPM
21
21
  - 🧪 **Comprehensive Testing**: 70%+ test coverage with dedicated test suites for Claude Desktop workflows
@@ -264,7 +264,9 @@ bctb-mcp --version
264
264
  bctb-mcp --help
265
265
  ```
266
266
 
267
- ## Agentic Monitoring
267
+ ## Agentic Monitoring (Preview)
268
+
269
+ > **Note:** Agentic Monitoring is currently a preview feature. APIs and behavior may change in future releases.
268
270
 
269
271
  BC Telemetry Buddy MCP includes a built-in **autonomous agent runtime** for scheduled telemetry monitoring. Agents use an LLM (Azure OpenAI or Anthropic) to query telemetry, reason about findings, track issues across runs, and take action — all without manual intervention.
270
272
 
@@ -170,6 +170,32 @@
170
170
  ],
171
171
  "description": "Tool access scope for agents. 'read-only' prevents save_query and other write tools.",
172
172
  "default": "read-only"
173
+ },
174
+ "retry": {
175
+ "type": "object",
176
+ "description": "Retry configuration for transient LLM API errors (429, 529, 503). Uses exponential backoff.",
177
+ "properties": {
178
+ "maxRetries": {
179
+ "type": "number",
180
+ "description": "Maximum number of retry attempts before failing.",
181
+ "default": 10
182
+ },
183
+ "initialDelayMs": {
184
+ "type": "number",
185
+ "description": "Initial delay in milliseconds before the first retry.",
186
+ "default": 2000
187
+ },
188
+ "backoffMultiplier": {
189
+ "type": "number",
190
+ "description": "Multiplier applied to the delay after each retry attempt.",
191
+ "default": 2
192
+ },
193
+ "maxDelayMs": {
194
+ "type": "number",
195
+ "description": "Maximum delay in milliseconds between retries (cap).",
196
+ "default": 60000
197
+ }
198
+ }
173
199
  }
174
200
  }
175
201
  },