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.
Files changed (2) hide show
  1. package/README.md +11 -3
  2. 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
- **Ofer Shapira**
121
+ [![Made by ofershap](https://gitshow.dev/api/card/ofershap)](https://gitshow.dev/ofershap)
122
+
123
+ [![LinkedIn](https://img.shields.io/badge/LinkedIn-Connect-0A66C2?style=flat&logo=linkedin&logoColor=white)](https://linkedin.com/in/ofershap)
124
+ [![GitHub](https://img.shields.io/badge/GitHub-Follow-181717?style=flat&logo=github&logoColor=white)](https://github.com/ofershap)
125
+
126
+ ---
118
127
 
119
- [![LinkedIn](https://img.shields.io/badge/LinkedIn-ofershap-blue?logo=linkedin)](https://linkedin.com/in/ofershap)
120
- [![GitHub](https://img.shields.io/badge/GitHub-ofershap-black?logo=github)](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
- "version": "1.0.0",
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}": "eslint --fix",
66
- "*.{json,md,yml,yaml}": "prettier --write"
66
+ "*.{ts,tsx,js}": [
67
+ "eslint --fix",
68
+ "prettier --write"
69
+ ],
70
+ "*.{json,md,yml,yaml}": [
71
+ "prettier --write"
72
+ ]
67
73
  }
68
74
  }