forked from dynatrace-oss/dynatrace-managed-mcp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.96 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.96 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
67
68
69
70
71
72
73
74
75
76
{
"name": "@dynatrace-oss/dynatrace-managed-mcp-server",
"version": "0.4.0",
"mcpName": "io.github.dynatrace-oss/dynatrace-managed-mcp",
"description": "Model Context Protocol (MCP) server for Dynatrace Managed (self-hosted)",
"keywords": [
"Dynatrace",
"managed",
"mcp",
"model-context-protocol",
"server"
],
"main": "./dist/index.js",
"type": "commonjs",
"bin": {
"mcp-server-dynatrace": "./dist/index.js"
},
"files": [
"dist"
],
"exports": {
"./package.json": "./package.json",
".": {
"types": "./index.d.ts",
"default": "./index.js"
}
},
"bugs": {
"url": "https://github.com/dynatrace-oss/dynatrace-managed-mcp/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dynatrace-oss/dynatrace-managed-mcp.git"
},
"directories": {
"dist": "dist"
},
"scripts": {
"build": "tsc --build && chmod u+x dist/index.js",
"prepare": "husky",
"watch": "tsc --watch",
"test": "jest",
"test:unit": "jest --selectProjects unit",
"test:integration": "jest --selectProjects integration --runInBand --forceExit",
"coverage": "jest --coverage",
"serve": "node ./dist/index.js --http --port 8080",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write ."
},
"author": "Dynatrace",
"license": "MIT",
"dependencies": {
"@dynatrace/openkit-js": "^4.2.0",
"@modelcontextprotocol/sdk": "^1.21.2",
"axios": "^1.13.1",
"commander": "^14.0.2",
"open": "^11.0.0",
"undici": "^7.18.2",
"winston": "^3.19.0",
"zod-to-json-schema": "^3.25.1"
},
"devDependencies": {
"@types/axios": "^0.14.4",
"@types/http-proxy": "^1.17.17",
"@types/jest": "^30.0.0",
"@types/node": "^22.19.3",
"dotenv": "^17.2.3",
"http-proxy": "^1.18.1",
"husky": "^9.1.7",
"jest": "^30.2.0",
"prettier": "^3.7.4",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
}
}