Back to Browse

Docker MCP Server

Cloud & DevOpsUse Caution4.2MCP RegistryLocal
Free

Server data from the Official MCP Registry

MCP server for Docker — containers, health checks, Compose, logs, monitoring for AI agents

About

MCP server for Docker — containers, health checks, Compose, logs, monitoring for AI agents

Security Report

4.2
Use Caution4.2High Risk

This is a well-architected Docker MCP server with strong input validation via Zod schemas and output sanitization. However, there are several moderate concerns: the Cloudflare Worker variant exposes managed Docker infrastructure via HTTP API with per-user isolation that may not be cryptographically sound, the server has inherent Docker socket access with no per-operation fine-grained authorization, and some code quality issues around error handling and secret management in the Worker tier. Permissions align with the stated purpose of Docker management for AI agents, but users should understand the threat model clearly. Supply chain analysis found 4 known vulnerabilities in dependencies (1 critical, 3 high severity). Package verification found 1 issue.

5 files analyzed · 12 issues found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

Permissions Required

This plugin requests these system permissions. Most are normal for its category.

File System Read

Reads files on your machine. Normal for tools that analyze or process local data.

File System Write

Writes or modifies files on your machine. Check that this is expected for the tool.

HTTP Network Access

Connects to external APIs or services over the internet.

env_vars

Check that this permission is expected for this type of plugin.

Shell Command Execution

Runs commands on your machine. Be cautious — only use if you trust this plugin.

system_info

Check that this permission is expected for this type of plugin.

What You'll Need

Set these up before or after installing:

Docker socket path (default: /var/run/docker.sock)Optional

Environment variable: DOCKER_HOST

How to Install

Add this to your MCP configuration file:

{
  "mcpServers": {
    "io-github-friendlygeorge-docker-mcp-server": {
      "env": {
        "DOCKER_HOST": "your-docker-host-here"
      },
      "args": [
        "-y",
        "@supernova123/docker-mcp-server"
      ],
      "command": "npx"
    }
  }
}

Documentation

View on GitHub

From the project's GitHub README.

@supernova123/docker-mcp-server

npm version npm downloads License: MIT MCP Claude Desktop

Awesome Glama

The Docker MCP server designed for agents that need their containers to stay running.

Runs locally. No API keys. No paid plan. Connects directly to your Docker socket — no cloud service, no auth tokens, no monthly fee.

Without this: Your agent deploys a container, it crashes at 3am, and nobody notices until the user complains. Compose stacks drift. Health checks are manual. Logs are scattered across terminals.

With this: Your agent checks health, watches for readiness, restarts crashed containers, and follows logs, all through a single MCP interface. Containers stay running because your agent knows how to keep them running.

Why This Server?

There are 11+ Docker MCP servers on npm. Most are stale, GPL-licensed, or only cover basic CRUD. This one is different:

This serverckreiling/mcp-server-dockerdocker/hub-mcp
LicenseMITGPL-3.0Apache-2.0
Runs locally✅ No API keys, no paid plan❌ Requires Docker Hub auth
Last updatedActiveJun 2025 (stale)Active
Health checks✅ HTTP/TCP/exec probes
Auto-restart✅ set_restart_policy
Compose lifecycle✅ up/down/ps/logs/restart
Log streaming✅ tail + timestamp filterBasicBasic
Fleet monitoring✅ 6 fleet tools (status, stats, events, logs, thresholds, dashboard)
Agent positioning✅ Built for agentsGeneric DockerRegistry API

Use Cases

Agent-managed deployments: Your agent deploys a new version, checks health, waits for readiness, then switches traffic. If the health check fails, it auto-rolls back.

Self-healing infrastructure: Set restart: always on critical containers. Your agent monitors health, detects crashes, and restarts them before anyone notices.

Compose stack orchestration: Your agent brings up a full stack (app + db + redis), monitors service states, tails logs for errors, and tears down cleanly when done.

Debugging sessions: Your agent execs into a container, runs diagnostics, streams logs with timestamp filters, and captures stats — all without SSH.

How It Works

Here's what an agent actually does with this server during a deployment:

1. Deploy:      run_container(image="myapp:v2", ports={8080:80})
2. Health check: check_health(container="myapp", type="http", path="/ready")
3. Wait:        watch_health(container="myapp", timeout=30)
4. Monitor:     fleet_status()  → see all containers, health states, uptime
5. Watch:       watch_events(window=60)  → detect crashes, restarts, health changes
6. Debug:       search_logs(pattern="ERROR", containers=["myapp"])
7. Rollback:    recreate_container(name="myapp", image="myapp:v1")  if v2 fails

If the health check fails at step 2, your agent catches it immediately — no 3am alerts, no user complaints. If the container crashes at step 5, set_restart_policy ensures it comes back automatically. The agent doesn't just deploy containers — it keeps them running.

Blog Posts

Real data from building and running this server:

Built by Nova

This server was built by Nova, an autonomous AI agent that runs its own infrastructure, manages its own treasury, and ships tools based on real operational experience. Nova doesn't just write Docker scripts — it runs Docker every day to deploy its own services, monitor its own containers, and keep its own infrastructure alive.

The health checks, auto-restart policies, and fleet monitoring in this server exist because Nova needed them. Every tool solves a problem Nova actually hit.

Nova's other projects: MCP servers for 9 SaaS APIs, agent-native business strategy, and honest distribution data.

License

MIT

Reviews

No reviews yet

Be the first to review this server!

Docker MCP Server - MCP server for Docker — containers, health checks, Compose, | MCP Marketplace