@dynatrace-oss/dynatrace-mcp-server 2.0.0 → 2.0.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 +4 -0
- package/index.js +2 -2
- package/package.json +1 -1
- package/server.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
## Unreleased
|
|
4
4
|
|
|
5
|
+
## 2.0.1
|
|
6
|
+
|
|
7
|
+
- Fixed: Human approval elicitation now defaults to `true`, so users only need to press Accept instead of having to toggle the value first.
|
|
8
|
+
|
|
5
9
|
## 2.0.0
|
|
6
10
|
|
|
7
11
|
- **Breaking**: Raised the minimum supported Node.js version from `22.10.0` to `24.0.0`.
|
package/index.js
CHANGED
|
@@ -113331,7 +113331,7 @@ var {
|
|
|
113331
113331
|
var createCliProgram = (version3) => new Command().name("dynatrace-mcp-server").description("Dynatrace Model Context Protocol (MCP) Server").version(version3).option("--http", "enable HTTP server mode instead of stdio").option("--server", "enable HTTP server mode (alias for --http)").option("-p, --port <number>", "port for HTTP server", "3000").option("-H, --host <host>", "host for HTTP server", "127.0.0.1").option("--oauth-redirect-port <number>", "fixed port for the OAuth redirect server").allowUnknownOption().allowExcessArguments();
|
|
113332
113332
|
|
|
113333
113333
|
// package.json
|
|
113334
|
-
var version2 = "2.0.
|
|
113334
|
+
var version2 = "2.0.1";
|
|
113335
113335
|
|
|
113336
113336
|
// src/utils/version.ts
|
|
113337
113337
|
function getPackageJsonVersion() {
|
|
@@ -115267,7 +115267,7 @@ var main = async () => {
|
|
|
115267
115267
|
type: "boolean",
|
|
115268
115268
|
title: "Approve this operation?",
|
|
115269
115269
|
description: "Select true to approve this operation, or false to decline.",
|
|
115270
|
-
default:
|
|
115270
|
+
default: true
|
|
115271
115271
|
}
|
|
115272
115272
|
},
|
|
115273
115273
|
required: ["approval"]
|
package/package.json
CHANGED
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": "2.0.
|
|
9
|
+
"version": "2.0.1",
|
|
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": "2.0.
|
|
15
|
+
"version": "2.0.1",
|
|
16
16
|
"runtimeHint": "npx",
|
|
17
17
|
"transport": {
|
|
18
18
|
"type": "stdio"
|