You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .cursor-plugin/plugin.json
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,8 +1,8 @@
1
1
{
2
2
"name": "docker-developer-tools",
3
3
"displayName": "Docker Developer Tools",
4
-
"version": "0.8.0",
5
-
"description": "A Cursor plugin for Docker and container workflows - 14 skills, 9 rules, and 84 MCP tools for building, debugging, optimizing, and managing Docker containers, images, networks, and volumes. Includes a companion MCP server (docker-mcp) for live Docker CLI integration.",
4
+
"version": "0.9.0",
5
+
"description": "A Cursor plugin for Docker and container workflows - 15 skills, 9 rules, and 98 MCP tools for building, debugging, optimizing, and managing Docker containers, images, networks, and volumes. Includes a companion MCP server (docker-mcp) for live Docker CLI integration.",
Copy file name to clipboardExpand all lines: CLAUDE.md
+53-4Lines changed: 53 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,11 +4,11 @@ Project documentation for Claude Code and AI assistants working on this reposito
4
4
5
5
## Project Overview
6
6
7
-
Docker Developer Tools is a Cursor IDE plugin that integrates Docker and container workflows into Cursor's AI chat. It includes 14 skills, 9 rules, and a companion MCP server with 84 tools for live Docker CLI integration.
7
+
Docker Developer Tools is a Cursor IDE plugin that integrates Docker and container workflows into Cursor's AI chat. It includes 15 skills, 9 rules, and a companion MCP server with 98 tools for live Docker CLI integration.
8
8
9
9
This is a monorepo - the Cursor plugin (skills and rules) and the companion MCP server live in the same repository. Docker's API is local (Docker Engine socket / CLI), so one repo is simpler for users to install and maintain.
10
10
11
-
**Version:** 0.8.0
11
+
**Version:** 0.9.0
12
12
**License:** CC-BY-NC-ND-4.0
13
13
**Author:** TMHSDigital
14
14
@@ -35,7 +35,7 @@ Docker-Developer-Tools/
35
35
tests/ # Python structure tests
36
36
```
37
37
38
-
## Skills (14)
38
+
## Skills (15)
39
39
40
40
| Skill | Description |
41
41
|-------|-------------|
@@ -53,6 +53,7 @@ Docker-Developer-Tools/
53
53
|`docker-resource-management`| Resource limits and monitoring |
54
54
|`docker-advanced-workflows`| Multi-stage pipelines, sidecar patterns, healthchecks, signal handling |
The MCP server talks to Docker via CLI exec (`docker` commands) rather than the Docker Engine REST API. It uses stdio transport and requires `docker` to be available on PATH.
74
75
@@ -206,6 +207,40 @@ The MCP server talks to Docker via CLI exec (`docker` commands) rather than the
206
207
|`docker_manifestPush`| Push a manifest list to a registry |
207
208
|`docker_manifestRm`| Remove local manifest lists |
208
209
210
+
### Container Gaps (4)
211
+
212
+
| Tool | Description |
213
+
|------|-------------|
214
+
|`docker_diff`| Inspect filesystem changes in a container |
215
+
|`docker_export`| Export a container's filesystem as a tar archive |
216
+
|`docker_port`| List port mappings for a container |
217
+
|`docker_rename`| Rename a container |
218
+
219
+
### Image Gaps (2)
220
+
221
+
| Tool | Description |
222
+
|------|-------------|
223
+
|`docker_imageHistory`| Show layer history of an image |
224
+
|`docker_import`| Import a tarball to create a filesystem image |
225
+
226
+
### Context Management (6)
227
+
228
+
| Tool | Description |
229
+
|------|-------------|
230
+
|`docker_contextCreate`| Create a context for remote Docker hosts |
231
+
|`docker_contextLs`| List available contexts |
232
+
|`docker_contextInspect`| Display detailed context information |
233
+
|`docker_contextRm`| Remove one or more contexts |
234
+
|`docker_contextUse`| Set the current active context |
235
+
|`docker_contextShow`| Print the name of the current context |
236
+
237
+
### Registry Authentication (2)
238
+
239
+
| Tool | Description |
240
+
|------|-------------|
241
+
|`docker_login`| Authenticate to a container registry |
242
+
|`docker_logout`| Log out from a container registry |
243
+
209
244
## Development Workflow
210
245
211
246
### Plugin development (symlink)
@@ -359,3 +394,17 @@ Full checklist with copy-paste commands: [CONTRIBUTING.md - Release Checklist](C
0 commit comments