-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.31 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.31 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
{
"name": "container-exec-mcp",
"version": "1.1.1",
"description": "MCP server with Docker Container automation capabilities",
"main": "dist/http-server.js",
"type": "module",
"engines": {
"node": ">=18.0.0"
},
"bin": {
"container-exec-mcp": "dist/stdio-server.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/http-server.js",
"start:stdio": "node dist/stdio-server.js",
"dev": "tsx src/http-server.ts",
"dev:stdio": "tsx src/stdio-server.ts",
"prepare": "npm run build"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4",
"cors": "^2.8.5",
"dockerode": "^4.0.2",
"dotenv": "^17.2.3",
"express": "^4.21.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/dockerode": "^3.3.44",
"@types/express": "^5.0.0",
"@types/node": "^22.9.0",
"dockerode": "^4.0.2",
"tsx": "^4.19.2",
"typescript": "^5.6.3"
},
"keywords": [
"n8n",
"mcp",
"docker",
"docker-automation"
],
"repository": {
"type": "git",
"url": "https://github.com/davidkim9/container-exec-mcp.git"
},
"bugs": {
"url": "https://github.com/davidkim9/container-exec-mcp/issues"
},
"homepage": "https://github.com/davidkim9/container-exec-mcp#readme",
"author": "DK",
"license": "MIT"
}