-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.3 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.3 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
{
"name": "@tmhs/docker-mcp",
"version": "1.0.0",
"description": "MCP server for Docker CLI integration - 150 tools for containers, images, compose, volumes, networks, cleanup, observability, buildx, manifests, contexts, registry auth, Swarm orchestration, stacks, configs, secrets, content trust, Scout, plugins, and system info.",
"type": "module",
"main": "dist/index.js",
"bin": {
"docker-mcp": "dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"engines": {
"node": ">= 20.0.0"
},
"scripts": {
"build": "tsc",
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/node": "^25.5.2",
"tsx": "^4.19.4",
"typescript": "^6.0.2",
"vitest": "^4.1.2"
},
"license": "CC-BY-NC-ND-4.0",
"repository": {
"type": "git",
"url": "https://github.com/TMHSDigital/Docker-Developer-Tools.git",
"directory": "mcp-server"
},
"homepage": "https://github.com/TMHSDigital/Docker-Developer-Tools",
"bugs": {
"url": "https://github.com/TMHSDigital/Docker-Developer-Tools/issues"
},
"author": "TMHSDigital"
}