I had an issue connecting Claude Desktop to the Docker MCP Gateway. Turns out it was an issue in the Dockerfile and was able to fix it by changing the entrypoint from index.js to server.js.
Changed this:
ENTRYPOINT ["node", "/app/dist/index.js"]
To this:
ENTRYPOINT ["node", "/app/dist/server.js"]
I had an issue connecting Claude Desktop to the Docker MCP Gateway. Turns out it was an issue in the Dockerfile and was able to fix it by changing the entrypoint from index.js to server.js.
Changed this:
ENTRYPOINT ["node", "/app/dist/index.js"]
To this:
ENTRYPOINT ["node", "/app/dist/server.js"]