-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.26 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.26 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
{
"name": "ptp-operator-mcp-server",
"version": "1.0.0",
"description": "MCP server for OpenShift PTP Operator monitoring and management",
"main": "index.js",
"type": "module",
"bin": {
"ptp-mcp-server": "./index.js"
},
"scripts": {
"start": "node index.js",
"start:http": "node index-tcp.js",
"dev": "node --inspect index.js",
"dev:http": "node --inspect index-tcp.js",
"test": "echo \"Tests not implemented yet\" && exit 0",
"lint": "echo \"Linting not implemented yet\" && exit 0"
},
"keywords": [
"mcp",
"ptp",
"openshift",
"linuxptp",
"precision-time-protocol",
"kubernetes",
"claude",
"monitoring"
],
"author": "Your Name <your.email@example.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/aneeshkp/ptp-operator-mcp-server.git"
},
"bugs": {
"url": "https://github.com/aneeshkp/ptp-operator-mcp-server/issues"
},
"homepage": "https://github.com/aneeshkp/ptp-operator-mcp-server#readme",
"dependencies": {
"@kubernetes/client-node": "^0.20.0",
"@modelcontextprotocol/sdk": "^0.4.0",
"cors": "^2.8.5",
"express": "^4.21.2"
},
"devDependencies": {
"@types/node": "^20.0.0"
},
"engines": {
"node": ">=18.0.0"
}
}