Docker MCP Server
by Docker ยท โญ 1.5k stars ยท updated 3 weeks ago
Manage Docker containers, images, networks, and volumes through natural language. List, start, stop, inspect containers, and run Docker commands from your AI assistant.
82
Very Good
Quality Score Breakdown
maintenance85/100
community80/100
documentation82/100
compatibility81/100
Use Cases
- โmanage containers
- โlist images
- โrun Docker commands
- โinspect containers
โก One-Click Install Configs
Copy the config below and paste it into your AI client's config file.
๐ค Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"docker": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-v",
"/var/run/docker.sock:/var/run/docker.sock",
"mcp/docker"
]
}
}
}โก Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"docker": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-v",
"/var/run/docker.sock:/var/run/docker.sock",
"mcp/docker"
]
}
}
}๐ VS Code
.vscode/mcp.json
{
"mcp": {
"servers": {
"docker": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-v",
"/var/run/docker.sock:/var/run/docker.sock",
"mcp/docker"
]
}
}
}
}