-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
46 lines (46 loc) · 1001 Bytes
/
package.json
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
{
"name": "mcp-server-kubernetes",
"version": "0.1.1",
"description": "MCP server for interacting with Kubernetes clusters via kubectl",
"license": "MIT",
"type": "module",
"author": "Flux159",
"repository": {
"type": "git",
"url": "https://github.com/Flux159/mcp-server-kubernetes"
},
"bin": {
"mcp-server-kubernetes": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc && shx chmod +x dist/*.js",
"dev": "tsc --watch",
"start": "node dist/index.js",
"test": "vitest --testTimeout=20000",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"kubernetes",
"claude",
"anthropic",
"kubectl"
],
"engines": {
"node": ">=18"
},
"dependencies": {
"@kubernetes/client-node": "^0.20.0",
"@modelcontextprotocol/sdk": "1.0.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/node": "^22.9.3",
"shx": "^0.3.4",
"typescript": "^5.6.2",
"vitest": "2.1.8"
}
}