mcpdockery
MCP server for natural-language control of local Docker, covering containers, images, volumes, networks, and Compose stacks, plus security scanning and diagnostics.
README
mcpdockery
An MCP server that gives an LLM (Claude, etc.) direct, natural-language control over your local Docker daemon — containers, images, volumes, networks, and Compose stacks.
Built with FastMCP and the Docker SDK for Python.
Table of contents
- Requirements
- Installation
- Running the server
- Connecting to an MCP client
- Available tools
- Usage examples
- Project structure
- Safety notes
- License
Requirements
| Requirement | Notes |
|---|---|
| Python >= 3.14 | Interpreter version pinned in .python-version |
| Docker | Docker Desktop or Docker Engine, running locally |
| Docker Compose v2 CLI | docker compose must be available on PATH — required for the stack/compose tools |
| Trivy | trivy must be available on PATH — required for the scan_image and scan_dockerfile tools |
| Hadolint | hadolint must be available on PATH — required for the lint_dockerfile tool |
| uv | Used for dependency management and running the server |
For pulling from or pushing to a private registry (Docker Hub, AWS ECR, GCR, etc.), authenticate with that registry beforehand using your normal docker login flow — this server never accepts or stores credentials itself.
Installation
- Clone the repository:
git clone <this-repo> cd mcpdockery - Install dependencies:
This creates auv sync.venvand installs the exact dependency versions pinned inuv.lock. - Confirm Docker is running:
If this command fails, start Docker Desktop (or your Docker Engine) before continuing.docker info
Running the server
uv run src/main.py
The server communicates over stdio, so it's meant to be launched by an MCP client rather than run standalone in a terminal.
Connecting to an MCP client
Add an entry to your MCP client's configuration (e.g. claude_desktop_config.json for Claude Desktop, or your project's .mcp.json for Claude Code):
{
"mcpServers": {
"mcpdockery": {
"command": "uv",
"args": ["--directory", "/absolute/path/to/mcpdockery", "run", "src/main.py"]
}
}
}
Replace /absolute/path/to/mcpdockery with the actual path where you cloned the repository, then restart the client. The tools listed below will become available to the model.
Available tools
Containers (containers.py)
| Tool | Description |
|---|---|
run_container |
Runs a container from an image, mapping a container port to a host port |
stop_container |
Stops a running container |
container_start |
Starts a stopped container |
container_restart |
Restarts a container |
delete_container |
Force-removes a container (stops it first if needed). Destructive — requires confirm=True; the first call only previews what would be deleted |
list_containers |
Lists all containers and their status |
container_logs |
Fetches the last N log lines from a container. Secret-shaped values (passwords, tokens, API keys) are redacted |
container_stats |
Reports live CPU % and memory usage |
container_inspect |
Shows env vars, mounts, network IPs, and health status. Secret-shaped env values are redacted |
container_exec |
Executes a shell command inside a running container. Secret-shaped values in the output are redacted |
Images (images.py)
| Tool | Description |
|---|---|
list_images |
Lists all local images, including untagged/intermediate ones, with size |
pull_image |
Pulls an image from a registry without running it; defaults to the alpine tag unless a different tag is requested |
build_image |
Builds an image from a Dockerfile already on disk |
push_image |
Tags and pushes a local image to a registry (requires prior docker login) |
delete_image |
Force-removes a local image. Destructive — requires confirm=True; the first call only previews what would be deleted |
Volumes (volumes.py)
| Tool | Description |
|---|---|
list_volumes |
Lists volumes with driver and mountpoint |
create_volume |
Creates a new volume |
remove_volume |
Deletes a volume (fails if still in use). Destructive — requires confirm=True; the first call only previews what would be deleted |
Networks (networks.py)
| Tool | Description |
|---|---|
list_networks |
Lists networks with driver and scope |
create_network |
Creates a new network |
Optimization (optimization.py)
| Tool | Description |
|---|---|
analyze_multistage |
Detects whether a Dockerfile would benefit from a multi-stage build (build-tool commands in a single-stage image); returns reasoning + raw content for the model to draft the rewrite |
Diagnostics (diagnostics.py)
| Tool | Description |
|---|---|
docker_doctor |
Scans all containers and reports only the ones needing attention: OOM kills, restart loops, unhealthy checks, crashes, high CPU/memory |
check_exposed_ports |
Flags running containers with sensitive ports (databases, admin panels, Docker daemon API) or any port bound to all network interfaces |
Security (security.py)
| Tool | Description |
|---|---|
scan_image |
Scans an image for known vulnerabilities using Trivy; defaults to CRITICAL/HIGH severity only |
generate_sbom |
Generates a Software Bill of Materials (SBOM) for an image using Trivy, in CycloneDX or SPDX-JSON format |
scan_dockerfile |
Scans a Dockerfile for misconfigurations (root user, latest tag, hardcoded secrets, missing HEALTHCHECK, etc.) before it's even built |
lint_dockerfile |
Lints a Dockerfile with Hadolint for best-practice/style issues (unpinned versions, ADD vs COPY, missing --no-install-recommends, etc.) |
audit_dockerfile |
Combined report: scan_dockerfile + lint_dockerfile + raw file content, so the model can also draft a corrected Dockerfile — use for a general "check my Dockerfile" request |
Compose stacks (stacks.py)
| Tool | Description |
|---|---|
deploy_stack |
Deploys a stack from an inline docker-compose.yml (compose up -d) |
stop_stack |
Stops a stack's containers without removing them |
remove_stack |
Stops and removes a stack, including its volumes (compose down -v). Destructive — requires confirm=True; the first call only previews what would be removed |
list_stacks |
Lists all compose projects, including stopped ones |
stack_status |
Shows the status of a stack's containers (compose ps) |
stack_logs |
Collects logs from every container in a stack |
Usage examples
Once connected, you can drive the server with natural-language requests. A few examples of what to expect:
| You ask | Tool(s) the model will likely use |
|---|---|
| "Pull the alpine version of redis" | pull_image |
| "Run an nginx container on port 8080" | run_container |
| "Show me the logs for my-app from the last hour" | container_logs |
| "What's using all the CPU right now?" | list_containers, container_stats |
| "Is anything broken right now?" | docker_doctor |
| "Is anything exposed to the network that shouldn't be?" | check_exposed_ports |
| "Deploy this docker-compose file as 'staging'" | deploy_stack |
| "Push my-app:latest to my ECR repo" | push_image |
| "Clean up the my-app container and its image" | delete_container, delete_image |
| "Scan my-app:latest for vulnerabilities" | scan_image |
| "Generate an SBOM for my-app:latest" | generate_sbom |
| "Check my Dockerfile for security issues before I build it" | scan_dockerfile |
| "Lint my Dockerfile for best practices" | lint_dockerfile |
| "Check/review my Dockerfile" | audit_dockerfile |
| "Should this Dockerfile use multi-stage builds?" | analyze_multistage |
The model chooses which tool(s) to call based on your request — you don't need to name the tool yourself.
Project structure
src/
main.py # Entrypoint: registers tool modules and starts the MCP server
server.py # Shared FastMCP server instance
docker_client.py # Lazy singleton Docker SDK client
compose_client.py # Thin wrapper around the `docker compose` CLI
helper.py # Shared helpers (path normalization, image tag parsing, Trivy wrapper)
containers.py # Container lifecycle & inspection tools
images.py # Image pull/build/push/list/delete tools
volumes.py # Volume tools
networks.py # Network tools
stacks.py # Compose stack tools
security.py # Image/Dockerfile vulnerability & misconfiguration scanning tools
diagnostics.py # Cross-container health triage tools
optimization.py # Dockerfile efficiency analysis tools
Safety notes
This server gives the model real, unsandboxed control over your Docker daemon:
delete_container,delete_image,remove_volume, andremove_stackare destructive and require an explicitconfirm=Trueargument. The first call (confirm defaults toFalse) performs no action and only returns a preview of what would be deleted — the model is instructed to only passconfirm=Trueafter you've explicitly agreed in the conversation. This is a safety net against a misread request, not a hard permission system: any client with tool access can still passconfirm=Truedirectly.remove_stackdeletes volumes (-v), which is destructive and irreversible for stateful data.container_execruns arbitrary shell commands inside a container.container_logs,container_exec, andcontainer_inspectredact values that look like secrets (keys matching PASSWORD/TOKEN/API_KEY/etc., inKEY=value,KEY: value, or"key": "value"form) before returning them. This is a best-effort heuristic, not a guarantee — anything that doesn't match the pattern (or that a container prints in an unusual format) is returned as-is, and remember that tool output is sent to the model provider as part of the conversation regardless of how "local" the Docker daemon is.push_imageandpull_imageuse your existing local Docker credentials — the model can push to or pull from any registry you're currently authenticated with. Note that AWS ECR tokens expire after 12 hours; if a push/pull suddenly fails with an auth error, re-run yourdocker login/aws ecr get-login-passwordflow rather than assuming the tool is broken.- The Docker socket grants root-equivalent access to the host. Giving a model tool access to this server is equivalent to giving it that level of access to your machine, whether or not the daemon is reachable over the network.
Only connect this server to clients/agents you trust, and be deliberate about which containers and stacks you let it touch.
License
No license specified.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.
E2B
Using MCP to run code via e2b.