inspector icon indicating copy to clipboard operation
inspector copied to clipboard

Docker container connection refused

Open stevenh opened this issue 3 months ago β€’ 10 comments

Inspector Version

  • 0.16.8

Describe the bug When using the published docker command from the readme connecting to the container doesn't work.

To Reproduce Steps to reproduce the behavior:

  1. Run the docker container
docker run --rm --network host -p 6274:6274 -p 6277:6277 ghcr.io/modelcontextprotocol/inspector:latest
  1. Try to connect
curl http://localhost:6274
  1. Connection fails:
curl: (7) Failed to connect to localhost port 6274 after 0 ms: Couldn't connect to server

Same happens if you click the link to load in a browser.

This site can’t be reached
localhost refused to connect.
Try:

Checking the connection
[Checking the proxy and the firewall](chrome-error://chromewebdata/#buttons)
ERR_CONNECTION_REFUSED

Expected behavior A clear and concise description of what you expected to happen. The browser should connect.

Screenshots If applicable, add screenshots to help explain your problem.

Image

Environment (please complete the following information):

  • OS: MacOS 26.0 (kernel: 25.0.0)
  • Browser: Chrome Version 140.0.7339.208 (Official Build) (arm64) and curl

Additional context Also tried without host networking enabled.

Also CTRL+C doesn't correctly stop the container either.

docker info
Client:
 Version:    28.4.0
 Context:    desktop-linux
 Debug Mode: false
 Plugins:
  ai: Docker AI Agent - Ask Gordon (Docker Inc.)
    Version:  v1.9.11
    Path:     /Users/steve/.docker/cli-plugins/docker-ai
  buildx: Docker Buildx (Docker Inc.)
    Version:  v0.28.0-desktop.1
    Path:     /Users/steve/.docker/cli-plugins/docker-buildx
  cloud: Docker Cloud (Docker Inc.)
    Version:  v0.4.27
    Path:     /Users/steve/.docker/cli-plugins/docker-cloud
  compose: Docker Compose (Docker Inc.)
    Version:  v2.39.2-desktop.1
    Path:     /Users/steve/.docker/cli-plugins/docker-compose
  debug: Get a shell into any image or container (Docker Inc.)
    Version:  0.0.42
    Path:     /Users/steve/.docker/cli-plugins/docker-debug
  desktop: Docker Desktop commands (Docker Inc.)
    Version:  v0.2.0
    Path:     /Users/steve/.docker/cli-plugins/docker-desktop
  extension: Manages Docker extensions (Docker Inc.)
    Version:  v0.2.31
    Path:     /Users/steve/.docker/cli-plugins/docker-extension
  init: Creates Docker-related starter files for your project (Docker Inc.)
    Version:  v1.4.0
    Path:     /Users/steve/.docker/cli-plugins/docker-init
  mcp: Docker MCP Plugin (Docker Inc.)
    Version:  v0.18.0
    Path:     /Users/steve/.docker/cli-plugins/docker-mcp
  model: Docker Model Runner (Docker Inc.)
    Version:  v0.1.40
    Path:     /Users/steve/.docker/cli-plugins/docker-model
  offload: Docker Offload (Docker Inc.)
    Version:  v0.4.27
    Path:     /Users/steve/.docker/cli-plugins/docker-offload
  sbom: View the packaged-based Software Bill Of Materials (SBOM) for an image (Anchore Inc.)
    Version:  0.6.0
    Path:     /Users/steve/.docker/cli-plugins/docker-sbom
  scout: Docker Scout (Docker Inc.)
    Version:  v1.18.3
    Path:     /Users/steve/.docker/cli-plugins/docker-scout
WARNING: Plugin "/Users/steve/.docker/cli-plugins/docker-dev" is not valid: failed to fetch metadata: fork/exec /Users/steve/.docker/cli-plugins/docker-dev: no such file or directory

Server:
 Containers: 3
  Running: 0
  Paused: 0
  Stopped: 3
 Images: 33
 Server Version: 28.4.0
 Storage Driver: overlayfs
  driver-type: io.containerd.snapshotter.v1
 Logging Driver: json-file
 Cgroup Driver: cgroupfs
 Cgroup Version: 2
 Plugins:
  Volume: local
  Network: bridge host ipvlan macvlan null overlay
  Log: awslogs fluentd gcplogs gelf journald json-file local splunk syslog
 CDI spec directories:
  /etc/cdi
  /var/run/cdi
 Discovered Devices:
  cdi: docker.com/gpu=webgpu
 Swarm: inactive
 Runtimes: io.containerd.runc.v2 runc
 Default Runtime: runc
 Init Binary: docker-init
 containerd version: 05044ec0a9a75232cad458027ca83437aae3f4da
 runc version: v1.2.5-0-g59923ef
 init version: de40ad0
 Security Options:
  seccomp
   Profile: builtin
  cgroupns
 Kernel Version: 6.10.14-linuxkit
 Operating System: Docker Desktop
 OSType: linux
 Architecture: aarch64
 CPUs: 11
 Total Memory: 11.67GiB
 Name: docker-desktop
 ID: a85f5bbd-f12a-40de-b03a-482b11704019
 Docker Root Dir: /var/lib/docker
 Debug Mode: false
 HTTP Proxy: http.docker.internal:3128
 HTTPS Proxy: http.docker.internal:3128
 No Proxy: hubproxy.docker.internal
 Labels:
  com.docker.desktop.address=unix:///Users/steve/Library/Containers/com.docker.docker/Data/docker-cli.sock
 Experimental: false
 Insecure Registries:
  hubproxy.docker.internal:5555
  ::1/128
  127.0.0.0/8
 Live Restore Enabled: false

Testing with a basic nginx container works as expected:

docker run --rm --name nginx-test -p 8080:80 nginx:alpine
curl http://localhost:8080
<!DOCTYPE html>
<html>
<head>
<title>Welcome to nginx!</title>
<style>
...

Looks like this is a IPv6 / host networking issues.

After enabling host networking on docker desktop -> Settings -> Resources -> Network -> Enable host networking (ticked) and restarting docker the default command works.

There must be something about how the server is being started that is causing the issue as running a simple node server also works as expected:

docker run --rm -it -p 8080:3000 node:24-slim sh -c   "npm install -g serve && echo 'hello world' > index.html && serve -p 3000"

stevenh avatar Sep 24 '25 16:09 stevenh

+1

NielsKSchjoedt avatar Sep 25 '25 09:09 NielsKSchjoedt

Try adding the HOST and ALLOWED_ORIGINS environment variables to the container to allow connections on non-localhost interfaces:

$ docker run --rm --network host -e HOST=127.0.0.1 -e ALLOWED_ORIGINS=http://127.0.0.1:6274 -p 6274:6274 -p 6277:6277 ghcr.io/modelcontextprotocol/inspector:latest

This is also required for running the application in a devcontainer:

$ HOST=127.0.0.1 ALLOWED_ORIGINS=http://127.0.0.1:6274 npx @modelcontextprotocol/inspector@latest

This is required since the application only listens on the "localhost" interface which, inside a container, is only accessible to other services running inside said container.

p5 avatar Sep 30 '25 09:09 p5

@stevenh I was able to run the latest version (0.17.0) with the command you supplied, open it in the browser and also with curl. Please try again with the latest and see if it helps.

Environment Differences

The only differences I can see in our setup is that I'm on macOS Seqoia (15.6.1) and you're on Tahoe (26.0) Not sure why the revs between 15 and 26 are skipped by Apple, but it's the most recent stable OS. Could have something to do with networking on Tahoe?

My Tests

  • Using the command you supplied: docker run --rm --network host -p 6274:6274 -p 6277:6277 ghcr.io/modelcontextprotocol/inspector:latest
Image
  • Using the command @p5 supplied above: docker run --rm --network host -e HOST=127.0.0.1 -e ALLOWED_ORIGINS=http://127.0.0.1:6274 -p 6274:6274 -p 6277:6277 ghcr.io/modelcontextprotocol/inspector:latest
Image

cliffhall avatar Oct 04 '25 21:10 cliffhall

@cliffhall nope still not working, docker desktop v4.47.0 with image sha256:22834f22f315fdd4ed6639be6d9e330abde7a8a4cc339f1c66aab6a1db732994 freshly pulled today.

When testing make sure you have docker desktop -> Settings -> Resources -> Network - Enable unselected, otherwise it will just work.

stevenh avatar Oct 06 '25 09:10 stevenh

@stevenh In order for the Inspector to run without --network=host it needs to be listening on 0.0.0.0.

We don't do that when running directly on the host machine, that's problematic from a security standpoint. We fixed an issue with that some versions back.

However when running in a Docker container, if host networking is disabled, your server must be listening to 0.0.0.0 in order to have its ports published successfully. We mention how to achieve this in the README.

I can run the following command and successfully connect to the server at the url it outputs.

docker run -e HOST=0.0.0.0 -p 6274:6274 -p 6277:6277 ghcr.io/modelcontextprotocol/inspector:latest
Image Image

cliffhall avatar Oct 11 '25 19:10 cliffhall

I'm seeing the same no connection issue in Seqoia (15.6.1) when using podman v5.5.2 instead of docker. Adding ALLOWED_ORIGINS and HOST didn't work either. The only way the connection is not refused is if I run w/o --network host and set the HOST to 0.0.0.0, which has the security issues pointed out above.

Zambonilli avatar Oct 23 '25 15:10 Zambonilli

Thanks @cliffhall I can confirm your updated command works as expected:

docker run -e HOST=0.0.0.0 -p 6274:6274 -p 6277:6277 ghcr.io/modelcontextprotocol/inspector:latest

It does however result in the following URL being presented which when you connect says Invalid origin: http://0.0.0.0:6274

Starting MCP inspector...
βš™οΈ Proxy server listening on 0.0.0.0:6277
πŸ”‘ Session token: XXXX
   Use this token to authenticate requests or set DANGEROUSLY_OMIT_AUTH=true to disable auth

πŸš€ MCP Inspector is up and running at:
   http://0.0.0.0:6274/?MCP_PROXY_AUTH_TOKEN=XXXX

🌐 Opening browser...
Invalid origin: http://0.0.0.0:6274

Should the README for docker be updated to use -e HOST=0.0.0.0 or should there be a fix applied to the container version so this isn't needed?

stevenh avatar Oct 23 '25 16:10 stevenh

Should the README for docker be updated to use -e HOST=0.0.0.0 or should there be a fix applied to the container version so this isn't needed?

@stevenh I really don't know what has changed since the README.md line for Docker was added. Not the Dockerfile. But I too have this problem on Sequoia 15.6.1 now, and when I originally added that line it worked.

This works:

docker run --rm \
  -p 127.0.0.1:6274:6274 \
  -p 127.0.0.1:6277:6277 \
  -e HOST=0.0.0.0 \
  -e MCP_AUTO_OPEN_ENABLED=false \
  ghcr.io/modelcontextprotocol/inspector:latest

The Invalid origin: http://0.0.0.0:6274 message you were seeing is because it was trying to open a browser inside the container and that fails for it with this configuration.

I asked Claude about the security risk of using 0.0.0.0 in this setup:

Image

However, I notice I must use the Direct connection type in the Inspector to hit a server running locally on port 3001, because the proxy can't see that port in the container.

Image

cliffhall avatar Oct 23 '25 19:10 cliffhall

docker run -e HOST=0.0.0.0 -p 6274:6274 -p 6277:6277 ghcr.io/modelcontextprotocol/inspector:latest

Thanks @stevenh !

This command is right and it no need host network mode.

docker run -e HOST=0.0.0.0 -p 6274:6274 -p 6277:6277 ghcr.io/modelcontextprotocol/inspector:latest

chenyanchen avatar Nov 03 '25 12:11 chenyanchen

docker run -e HOST=0.0.0.0 -p 6274:6274 -p 6277:6277 ghcr.io/modelcontextprotocol/inspector:latest

Thanks @stevenh !

This command is right and it no need host network mode.

docker run -e HOST=0.0.0.0 -p 6274:6274 -p 6277:6277 ghcr.io/modelcontextprotocol/inspector:latest

Please see my note above about making this safer:

docker run --rm \
  -p 127.0.0.1:6274:6274 \
  -p 127.0.0.1:6277:6277 \
  -e HOST=0.0.0.0 \
  -e MCP_AUTO_OPEN_ENABLED=false \
  ghcr.io/modelcontextprotocol/inspector:latest

cliffhall avatar Nov 03 '25 19:11 cliffhall

@cliffhall You should replace the command in the readme so that people don't have to first search all issues and read all the comments.

ML-Marco avatar Dec 11 '25 14:12 ML-Marco

@ML-Marco done. Thanks for the nudge.

cliffhall avatar Dec 18 '25 16:12 cliffhall