forked from theharithsa/Dynatrace-Managed-MCP
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.5 KB
/
Copy pathpackage.json
File metadata and controls
96 lines (96 loc) · 2.5 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "@theharithsa/dynatrace-managed-mcp-server",
"version": "1.0.3",
"description": "Dynatrace Managed MCP Server - Model Context Protocol integration for comprehensive observability, security analysis, and DevOps automation with Dynatrace Managed",
"publishConfig": {
"access": "public"
},
"type": "module",
"main": "dist/index.js",
"bin": {
"dynatrace-managed-mcp-server": "dist/index.js",
"dynatrace-managed-mcp": "dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"test": "jest --passWithNoTests",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"clean": "rimraf dist",
"prepare": "npm run clean && npm run build",
"prepublishOnly": "npm run build",
"docker:build": "docker build -t dynatrace-managed-mcp .",
"docker:run": "docker run --env-file .env -p 3000:3000 dynatrace-managed-mcp"
},
"keywords": [
"dynatrace",
"managed",
"mcp",
"model-context-protocol",
"observability",
"monitoring",
"security",
"devops",
"sre",
"incident-response",
"problems",
"metrics",
"events",
"entities",
"audit-logs",
"vulnerabilities",
"ai",
"llm",
"claude",
"chatgpt"
],
"author": {
"name": "Vishruth Harithsa",
"url": "https://github.com/theharithsa"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/theharithsa/Dynatrace-Managed-MCP.git"
},
"bugs": {
"url": "https://github.com/theharithsa/Dynatrace-Managed-MCP/issues"
},
"homepage": "https://github.com/theharithsa/Dynatrace-Managed-MCP#readme",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"@theharithsa/opentelemetry-instrumentation-mcp": "^1.0.4",
"axios": "^1.7.0",
"commander": "^12.1.0",
"dotenv": "^16.4.0",
"zod": "^3.25.76",
"zod-to-json-schema": "^3.24.6"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "^22.10.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^9.0.0",
"jest": "^29.7.0",
"rimraf": "^6.0.0",
"ts-jest": "^29.2.0",
"tsx": "^4.19.0",
"typescript": "^5.6.0"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist/**/*",
"dynatrace-agent-rules/**/*",
"README.md",
"LICENSE",
"CHANGELOG.md",
"CONTRIBUTING.md"
]
}