Docker MCP Server

Docker's MCP Server

Local serverstdioGo

What is the Docker MCP server?

Docker's MCP Server. The docker mcp server wraps that behind the Model Context Protocol, so an assistant can use it rather than through you.

What it actually does

The Docker MCP Server is a Model Context Protocol (MCP) server that provides seamless integration with Docker Desktop on Windows, enabling advanced automation and interaction capabilities for developers and tools.

Adding it to your client

Setup follows the usual MCP pattern — install or clone the server, register it in your client's configuration file, restart the client. The configuration blocks on this page cover the common clients.

Configuration

  1. Install Docker Desktop for Windows from Docker's official download page. 2. In Docker Desktop, go to Settings > General and check the box for "Expose daemon on tcp://localhost:2375 without TLS". This is required for the MCP server to communicate with Docker Desktop. > 💡 Tip: You can verify that the port is exposed

Caveats

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the docker mcp server does with a few real requests.

When to reach for it

This sits in the cloud and infrastructure group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. It is maintained by Freezeu; worth a glance at recent repository activity before you build anything load-bearing on it.

We check each listing at SyncDev against the project's documentation before it goes live — if something here drifts out of date, it is a bug worth reporting.

How to install the Docker MCP server

{
  "mcpServers": {
    "docker-mcp-stdio": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "freezeolo/docker-mcp-server"
      ]
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

  1. Install Docker Desktop for Windows from Docker's official download page. 2. In Docker Desktop, go to Settings > General and check the box for "Expose daemon on tcp://localhost:2375 without TLS". This is required for the MCP server to communicate with Docker Desktop. > 💡 Tip: You can verify that the port is exposed

Frequently asked questions

Follow the installation steps in the README. Ensure you have Docker Desktop with the daemon exposed on `tcp://localhost:2375` and configure your MCP client with the provided command.