@dynatrace-oss/dynatrace-mcp-server 1.7.0 → 1.7.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/manifest.json +0 -192
package/CHANGELOG.md
CHANGED
package/index.js
CHANGED
|
@@ -115306,7 +115306,7 @@ var {
|
|
|
115306
115306
|
} = import_index2.default;
|
|
115307
115307
|
|
|
115308
115308
|
// package.json
|
|
115309
|
-
var version2 = "1.7.
|
|
115309
|
+
var version2 = "1.7.1";
|
|
115310
115310
|
|
|
115311
115311
|
// src/utils/version.ts
|
|
115312
115312
|
function getPackageJsonVersion() {
|
|
@@ -118205,7 +118205,7 @@ Next Steps:
|
|
|
118205
118205
|
return server;
|
|
118206
118206
|
};
|
|
118207
118207
|
const program2 = new Command();
|
|
118208
|
-
program2.name("dynatrace-mcp-server").description("Dynatrace Model Context Protocol (MCP) Server").version(getPackageJsonVersion()).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").parse();
|
|
118208
|
+
program2.name("dynatrace-mcp-server").description("Dynatrace Model Context Protocol (MCP) Server").version(getPackageJsonVersion()).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").allowUnknownOption().allowExcessArguments().parse();
|
|
118209
118209
|
const options = program2.opts();
|
|
118210
118210
|
const httpMode = options.http || options.server;
|
|
118211
118211
|
const httpPort = parseInt(options.port, 10);
|
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": "1.7.
|
|
9
|
+
"version": "1.7.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": "1.7.
|
|
15
|
+
"version": "1.7.1",
|
|
16
16
|
"runtimeHint": "npx",
|
|
17
17
|
"transport": {
|
|
18
18
|
"type": "stdio"
|
package/manifest.json
DELETED
|
@@ -1,192 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"manifest_version": "0.3",
|
|
3
|
-
"name": "dynatrace-mcp-server",
|
|
4
|
-
"display_name": "Dynatrace MCP Server",
|
|
5
|
-
"version": "1.7.0",
|
|
6
|
-
"description": "Access Dynatrace observability data: logs, metrics, problems, vulnerabilities via DQL and Davis AI",
|
|
7
|
-
"long_description": "The Dynatrace MCP Server connects Claude to your Dynatrace observability platform, enabling real-time access to logs, metrics, problems, vulnerabilities, traces, and more — directly from your AI assistant. Supports DQL queries, Davis AI, workflow automation, and document management.",
|
|
8
|
-
"author": {
|
|
9
|
-
"name": "Dynatrace OSS",
|
|
10
|
-
"url": "https://github.com/dynatrace-oss"
|
|
11
|
-
},
|
|
12
|
-
"repository": {
|
|
13
|
-
"type": "git",
|
|
14
|
-
"url": "https://github.com/dynatrace-oss/dynatrace-mcp"
|
|
15
|
-
},
|
|
16
|
-
"homepage": "https://github.com/dynatrace-oss/dynatrace-mcp",
|
|
17
|
-
"documentation": "https://github.com/dynatrace-oss/dynatrace-mcp#readme",
|
|
18
|
-
"support": "https://github.com/dynatrace-oss/dynatrace-mcp/issues",
|
|
19
|
-
"license": "MIT",
|
|
20
|
-
"keywords": [
|
|
21
|
-
"dynatrace",
|
|
22
|
-
"mcp",
|
|
23
|
-
"observability",
|
|
24
|
-
"monitoring",
|
|
25
|
-
"logs",
|
|
26
|
-
"metrics",
|
|
27
|
-
"devops"
|
|
28
|
-
],
|
|
29
|
-
"server": {
|
|
30
|
-
"type": "node",
|
|
31
|
-
"entry_point": "index.js",
|
|
32
|
-
"mcp_config": {
|
|
33
|
-
"command": "node",
|
|
34
|
-
"args": [
|
|
35
|
-
"${__dirname}/index.js"
|
|
36
|
-
],
|
|
37
|
-
"env": {
|
|
38
|
-
"DT_ENVIRONMENT": "${user_config.dt_environment}",
|
|
39
|
-
"DT_PLATFORM_TOKEN": "${user_config.dt_platform_token}",
|
|
40
|
-
"OAUTH_CLIENT_ID": "${user_config.oauth_client_id}",
|
|
41
|
-
"OAUTH_CLIENT_SECRET": "${user_config.oauth_client_secret}",
|
|
42
|
-
"DT_SSO_URL": "${user_config.dt_sso_url}",
|
|
43
|
-
"DT_GRAIL_QUERY_BUDGET_GB": "${user_config.dt_grail_query_budget_gb}",
|
|
44
|
-
"DT_MCP_DISABLE_TELEMETRY": "${user_config.dt_mcp_disable_telemetry}"
|
|
45
|
-
}
|
|
46
|
-
}
|
|
47
|
-
},
|
|
48
|
-
"tools": [
|
|
49
|
-
{
|
|
50
|
-
"name": "get_environment_info",
|
|
51
|
-
"description": "Get information about the connected Dynatrace Environment and verify connection/authentication."
|
|
52
|
-
},
|
|
53
|
-
{
|
|
54
|
-
"name": "list_vulnerabilities",
|
|
55
|
-
"description": "Retrieve active vulnerabilities from Dynatrace with optional filters."
|
|
56
|
-
},
|
|
57
|
-
{
|
|
58
|
-
"name": "list_problems",
|
|
59
|
-
"description": "List Davis problems in Dynatrace with status and timeframe filters."
|
|
60
|
-
},
|
|
61
|
-
{
|
|
62
|
-
"name": "find_entity_by_name",
|
|
63
|
-
"description": "Find monitored Dynatrace entities by name and return entity IDs/types."
|
|
64
|
-
},
|
|
65
|
-
{
|
|
66
|
-
"name": "send_slack_message",
|
|
67
|
-
"description": "Send a Slack message through Dynatrace Slack Connector."
|
|
68
|
-
},
|
|
69
|
-
{
|
|
70
|
-
"name": "verify_dql",
|
|
71
|
-
"description": "Syntactically verify a DQL query before execution."
|
|
72
|
-
},
|
|
73
|
-
{
|
|
74
|
-
"name": "execute_dql",
|
|
75
|
-
"description": "Execute DQL and retrieve logs, metrics, events, spans, and entity data."
|
|
76
|
-
},
|
|
77
|
-
{
|
|
78
|
-
"name": "generate_dql_from_natural_language",
|
|
79
|
-
"description": "Generate DQL statements from natural language using Davis CoPilot."
|
|
80
|
-
},
|
|
81
|
-
{
|
|
82
|
-
"name": "explain_dql_in_natural_language",
|
|
83
|
-
"description": "Explain DQL statements in natural language using Davis CoPilot."
|
|
84
|
-
},
|
|
85
|
-
{
|
|
86
|
-
"name": "chat_with_davis_copilot",
|
|
87
|
-
"description": "Ask general Dynatrace questions using Davis CoPilot."
|
|
88
|
-
},
|
|
89
|
-
{
|
|
90
|
-
"name": "create_workflow_for_notification",
|
|
91
|
-
"description": "Create a Dynatrace workflow for problem notifications."
|
|
92
|
-
},
|
|
93
|
-
{
|
|
94
|
-
"name": "make_workflow_public",
|
|
95
|
-
"description": "Update a workflow and make it publicly accessible in the Dynatrace environment."
|
|
96
|
-
},
|
|
97
|
-
{
|
|
98
|
-
"name": "get_kubernetes_events",
|
|
99
|
-
"description": "Retrieve Kubernetes events from Dynatrace for a cluster and timeframe."
|
|
100
|
-
},
|
|
101
|
-
{
|
|
102
|
-
"name": "reset_grail_budget",
|
|
103
|
-
"description": "Reset the local Grail query budget tracker for the current MCP session."
|
|
104
|
-
},
|
|
105
|
-
{
|
|
106
|
-
"name": "send_email",
|
|
107
|
-
"description": "Send email through the Dynatrace Email API."
|
|
108
|
-
},
|
|
109
|
-
{
|
|
110
|
-
"name": "send_event",
|
|
111
|
-
"description": "Send custom events to Dynatrace using Events API v2."
|
|
112
|
-
},
|
|
113
|
-
{
|
|
114
|
-
"name": "list_exceptions",
|
|
115
|
-
"description": "List recent exceptions known to Dynatrace."
|
|
116
|
-
},
|
|
117
|
-
{
|
|
118
|
-
"name": "list_davis_analyzers",
|
|
119
|
-
"description": "List available Davis analyzers."
|
|
120
|
-
},
|
|
121
|
-
{
|
|
122
|
-
"name": "execute_davis_analyzer",
|
|
123
|
-
"description": "Execute a Davis analyzer with custom input."
|
|
124
|
-
},
|
|
125
|
-
{
|
|
126
|
-
"name": "create_dynatrace_notebook",
|
|
127
|
-
"description": "Create a Dynatrace notebook document for sharing findings."
|
|
128
|
-
}
|
|
129
|
-
],
|
|
130
|
-
"compatibility": {
|
|
131
|
-
"claude_desktop": ">=0.10.0",
|
|
132
|
-
"platforms": [
|
|
133
|
-
"darwin",
|
|
134
|
-
"win32",
|
|
135
|
-
"linux"
|
|
136
|
-
],
|
|
137
|
-
"runtimes": {
|
|
138
|
-
"node": ">=20.0.0"
|
|
139
|
-
}
|
|
140
|
-
},
|
|
141
|
-
"privacy_policies": [
|
|
142
|
-
"https://www.dynatrace.com/company/trust-center/privacy-notice/"
|
|
143
|
-
],
|
|
144
|
-
"user_config": {
|
|
145
|
-
"dt_environment": {
|
|
146
|
-
"type": "string",
|
|
147
|
-
"title": "Dynatrace Environment URL",
|
|
148
|
-
"description": "URL to your Dynatrace Platform (e.g. https://abc12345.apps.dynatrace.com). Do not use Dynatrace classic URLs.",
|
|
149
|
-
"required": true
|
|
150
|
-
},
|
|
151
|
-
"dt_platform_token": {
|
|
152
|
-
"type": "string",
|
|
153
|
-
"title": "Dynatrace Platform Token",
|
|
154
|
-
"description": "Dynatrace Platform Token for authentication. Alternative to browser-based OAuth authentication.",
|
|
155
|
-
"required": false,
|
|
156
|
-
"sensitive": true
|
|
157
|
-
},
|
|
158
|
-
"oauth_client_id": {
|
|
159
|
-
"type": "string",
|
|
160
|
-
"title": "OAuth Client ID",
|
|
161
|
-
"description": "OAuth Client ID for advanced authentication scenarios. Use together with OAUTH_CLIENT_SECRET.",
|
|
162
|
-
"required": false
|
|
163
|
-
},
|
|
164
|
-
"oauth_client_secret": {
|
|
165
|
-
"type": "string",
|
|
166
|
-
"title": "OAuth Client Secret",
|
|
167
|
-
"description": "OAuth Client Secret for advanced authentication scenarios. Use together with OAUTH_CLIENT_ID.",
|
|
168
|
-
"required": false,
|
|
169
|
-
"sensitive": true
|
|
170
|
-
},
|
|
171
|
-
"dt_sso_url": {
|
|
172
|
-
"type": "string",
|
|
173
|
-
"title": "Dynatrace SSO URL Override",
|
|
174
|
-
"description": "Optional SSO URL override for OAuth authentication (advanced troubleshooting only).",
|
|
175
|
-
"required": false
|
|
176
|
-
},
|
|
177
|
-
"dt_grail_query_budget_gb": {
|
|
178
|
-
"type": "number",
|
|
179
|
-
"title": "Grail Query Budget (GB)",
|
|
180
|
-
"description": "Budget limit in GB for Grail query bytes scanned per session. Default: 1000. Set to -1 to disable.",
|
|
181
|
-
"required": false,
|
|
182
|
-
"default": 1000
|
|
183
|
-
},
|
|
184
|
-
"dt_mcp_disable_telemetry": {
|
|
185
|
-
"type": "boolean",
|
|
186
|
-
"title": "Disable Telemetry",
|
|
187
|
-
"description": "Disable usage telemetry events sent by the MCP server.",
|
|
188
|
-
"required": false,
|
|
189
|
-
"default": false
|
|
190
|
-
}
|
|
191
|
-
}
|
|
192
|
-
}
|