@dynatrace-oss/dynatrace-mcp-server 1.8.5 → 1.8.6

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
@@ -1,5 +1,10 @@
1
1
  # @dynatrace-oss/dynatrace-mcp-server
2
2
 
3
+ ## 1.8.6
4
+
5
+ - Added a human approval gate to the `send_event` tool, consistent with other write-capable tools. This prevents unintended Davis Problem creation and cascading on-call notifications when sending `CUSTOM_ALERT` events.
6
+ - Updated `@dynatrace/strato-components` (3.3.0 → 3.5.0), `@dynatrace/strato-icons` (2.2.0 → 2.3.0), `mermaid` (11.13.0 → 11.15.0), `uuid` (11.1.0 → 14.0.0), and `qs` (6.14.2 → 6.15.2).
7
+
3
8
  ## 1.8.5
4
9
 
5
10
  - Updated `@dynatrace-sdk/client-automation` (5.22.0 → 7.0.1), `@dynatrace-sdk/client-davis-analyzers` (1.9.8 → 1.10.0), `@dynatrace-sdk/client-query` (1.23.1 → 1.24.0), `express-rate-limit` (8.3.0 → 8.5.1), `hono` (4.12.14 → 4.12.18), `ip-address` (10.1.0 → 10.2.0), and `fast-uri` (3.1.0 → 3.1.2).
package/index.js CHANGED
@@ -122103,7 +122103,7 @@ var {
122103
122103
  } = import_index2.default;
122104
122104
 
122105
122105
  // package.json
122106
- var version2 = "1.8.5";
122106
+ var version2 = "1.8.6";
122107
122107
 
122108
122108
  // src/utils/version.ts
122109
122109
  function getPackageJsonVersion() {
@@ -124828,6 +124828,12 @@ Next Steps:
124828
124828
  destructiveHint: true
124829
124829
  },
124830
124830
  async ({ eventType, title, entitySelector, properties, startTime, endTime }) => {
124831
+ const approved = await requestHumanApproval(
124832
+ `Send ${eventType} event: "${title}"${entitySelector ? ` targeting ${entitySelector}` : ""}`
124833
+ );
124834
+ if (!approved) {
124835
+ return "Operation cancelled: Human approval was not granted for sending this event.";
124836
+ }
124831
124837
  const dtClient = await createAuthenticatedHttpClient(scopesBase.concat("storage:events:write"));
124832
124838
  const result = await sendEvent(dtClient, {
124833
124839
  eventType,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dynatrace-oss/dynatrace-mcp-server",
3
- "version": "1.8.5",
3
+ "version": "1.8.6",
4
4
  "mcpName": "io.github.dynatrace-oss/Dynatrace-mcp",
5
5
  "description": "Model Context Protocol (MCP) server for Dynatrace",
6
6
  "keywords": [
package/server.json CHANGED
@@ -6,13 +6,13 @@
6
6
  "url": "https://github.com/dynatrace-oss/Dynatrace-mcp",
7
7
  "source": "github"
8
8
  },
9
- "version": "1.8.5",
9
+ "version": "1.8.6",
10
10
  "packages": [
11
11
  {
12
12
  "registryType": "npm",
13
13
  "registryBaseUrl": "https://registry.npmjs.org",
14
14
  "identifier": "@dynatrace-oss/dynatrace-mcp-server",
15
- "version": "1.8.5",
15
+ "version": "1.8.6",
16
16
  "runtimeHint": "npx",
17
17
  "transport": {
18
18
  "type": "stdio"