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
Manage Docker containers, images, and services directly from your AI assistant — list, start, stop, inspect logs, execute commands, and monitor resource usage.
9
+
Control Docker containers, images, and services from your AI coding assistant. List, start, stop, read logs, run commands inside containers, and check resource usage.
10
10
11
11
```bash
12
-
npx mcp-server-docker
12
+
npx mcp-docker-server
13
13
```
14
14
15
-
> Works with Claude Desktop, Cursor, VS Code Copilot, and any MCP client. Zero auth — connects to your local Docker socket automatically.
15
+
> Compatible with Claude Desktop, Cursor, VS Code Copilot, and any MCP-compatible client. No API keys needed. Connects to your local Docker socket automatically.
16
16
17
-

17
+

18
+
19
+
<sub>Demo built with <ahref="https://github.com/ofershap/remotion-readme-kit">remotion-readme-kit</a></sub>
20
+
21
+
## Why
22
+
23
+
If you work with Docker daily, you know the routine: switch to a terminal, type `docker ps`, scroll through logs, copy container IDs, restart services. It adds up. This MCP server lets your AI assistant handle those tasks for you while you stay focused on code. Ask it to check which containers are running, pull up logs from a failing service, or restart something that got stuck. It talks to Docker's API through the local socket, so there's nothing to configure and no credentials to manage.
18
24
19
25
## Tools
20
26
@@ -42,7 +48,7 @@ Add to `.cursor/mcp.json`:
42
48
"mcpServers": {
43
49
"docker": {
44
50
"command": "npx",
45
-
"args": ["-y", "mcp-server-docker"]
51
+
"args": ["-y", "mcp-docker-server"]
46
52
}
47
53
}
48
54
}
@@ -57,7 +63,7 @@ Add to `claude_desktop_config.json`:
57
63
"mcpServers": {
58
64
"docker": {
59
65
"command": "npx",
60
-
"args": ["-y", "mcp-server-docker"]
66
+
"args": ["-y", "mcp-docker-server"]
61
67
}
62
68
}
63
69
}
@@ -73,7 +79,7 @@ Add to user settings or `.vscode/mcp.json`:
73
79
"servers": {
74
80
"docker": {
75
81
"command": "npx",
76
-
"args": ["-y", "mcp-server-docker"]
82
+
"args": ["-y", "mcp-docker-server"]
77
83
}
78
84
}
79
85
}
@@ -93,7 +99,7 @@ Add to user settings or `.vscode/mcp.json`:
93
99
## Prerequisites
94
100
95
101
-**Docker** must be running on your machine
96
-
- The MCP server connects to the Docker socket at `/var/run/docker.sock` (Linux/macOS) or the named pipe on Windows
102
+
- The server connects to the Docker socket at `/var/run/docker.sock` (Linux/macOS) or the named pipe on Windows
0 commit comments