forked from dynatrace-oss/dynatrace-managed-mcp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.json
More file actions
66 lines (66 loc) · 2.25 KB
/
server.json
File metadata and controls
66 lines (66 loc) · 2.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.dynatrace-oss/dynatrace-managed-mcp",
"description": "MCP server for Dynatrace Managed to access logs, events, and metrics.",
"repository": {
"url": "https://github.com/dynatrace-oss/dynatrace-managed-mcp",
"source": "github"
},
"version": "0.4.0",
"packages": [
{
"registryType": "npm",
"registryBaseUrl": "https://registry.npmjs.org",
"identifier": "@dynatrace-oss/dynatrace-managed-mcp-server",
"version": "0.4.0",
"runtimeHint": "npx",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"name": "DT_MANAGED_ENVIRONMENT",
"description": "id of the managed environment, used for constructing URL for API and dashboards (e.g. of the form `01234567-89ab-cdef-abcd-ef0123456789`)",
"isRequired": true,
"format": "string"
},
{
"name": "DT_API_ENDPOINT_URL",
"description": "base url for Dynatrace Managed API, to which the environment id will be appended (e.g. `https://abc123.dynatrace-managed.com:9999`)",
"isRequired": true,
"format": "string"
},
{
"name": "DT_DYNATRACE_URL",
"description": "base url for Dynatrace Managed dashboard, to which the environment id will be appended (e.g. `https://dmz123.dynatrace-managed.com`)",
"isRequired": false,
"format": "string"
},
{
"name": "DT_MANAGED_API_TOKEN",
"description": "API Token with required scopes (e.g. 'dt0s16.SAMPLE.abcd1234')",
"isRequired": true,
"format": "string"
},
{
"name": "LOG_LEVEL",
"description": "Logging level (e.g. debug, info, warning, error)",
"isRequired": false,
"format": "string"
},
{
"name": "HTTP_PROXY",
"description": "HTTP Proxy to use",
"isRequired": false,
"format": "string"
},
{
"name": "DT_MCP_DISABLE_TELEMETRY",
"description": "Disable telemetry",
"isRequired": false,
"format": "boolean"
}
]
}
]
}