mcp-docker-server 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +11 -3
- package/package.json +9 -3
package/README.md
CHANGED
|
@@ -112,12 +112,20 @@ npm test
|
|
|
112
112
|
npm run build
|
|
113
113
|
```
|
|
114
114
|
|
|
115
|
+
## See also
|
|
116
|
+
|
|
117
|
+
More MCP servers and developer tools on my [portfolio](https://gitshow.dev/ofershap).
|
|
118
|
+
|
|
115
119
|
## Author
|
|
116
120
|
|
|
117
|
-
|
|
121
|
+
[](https://gitshow.dev/ofershap)
|
|
122
|
+
|
|
123
|
+
[](https://linkedin.com/in/ofershap)
|
|
124
|
+
[](https://github.com/ofershap)
|
|
125
|
+
|
|
126
|
+
---
|
|
118
127
|
|
|
119
|
-
[
|
|
120
|
-
[](https://github.com/ofershap)
|
|
128
|
+
<sub>README built with [README Builder](https://ofershap.github.io/readme-builder/)</sub>
|
|
121
129
|
|
|
122
130
|
## License
|
|
123
131
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mcp-docker-server",
|
|
3
|
-
"
|
|
3
|
+
"mcpName": "io.github.ofershap/docker",
|
|
4
|
+
"version": "1.0.1",
|
|
4
5
|
"description": "MCP server for Docker — manage containers, images, volumes, and compose services from your IDE",
|
|
5
6
|
"type": "module",
|
|
6
7
|
"bin": {
|
|
@@ -62,7 +63,12 @@
|
|
|
62
63
|
"vitest": "^3.2.0"
|
|
63
64
|
},
|
|
64
65
|
"lint-staged": {
|
|
65
|
-
"*.{ts,tsx,js}":
|
|
66
|
-
|
|
66
|
+
"*.{ts,tsx,js}": [
|
|
67
|
+
"eslint --fix",
|
|
68
|
+
"prettier --write"
|
|
69
|
+
],
|
|
70
|
+
"*.{json,md,yml,yaml}": [
|
|
71
|
+
"prettier --write"
|
|
72
|
+
]
|
|
67
73
|
}
|
|
68
74
|
}
|