Home/Servers/Docker MCP Server

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"
        ]
      }
    }
  }
}
โ† Back to all servers