docs/errors/MCPX_DOCKER_DAEMON_DOWN.md
MCPX_DOCKER_DAEMON_DOWNSeverity: error Domain: Docker
A server is configured with isolation.enabled: true (or auto-detected as
needing isolation), but mcpproxy could not connect to the Docker daemon. The
upstream server cannot start without Docker.
dockerd, containerd).DOCKER_HOST points to a stale socket (e.g. left over from a previous Colima session).MCPX_DOCKER_NO_PERMISSION
for that variant.docker info # works → daemon is up
docker context ls # which context (rootful, rootless, colima, …) is active
echo "$DOCKER_HOST" # should be empty or point at a real socket
open -a Docker # macOS Docker Desktop
colima start # macOS / Linux Colima
sudo systemctl start docker
sudo systemctl enable docker # auto-start on boot
If you don't need isolation for a particular server, turn it off:
{ "isolation": { "enabled": false } }
Note this means the upstream runs directly on the host with the host's
PATH / network — only do it for servers you trust.