diff --git a/Dockerfile b/Dockerfile index 935fc06..32fd769 100644 --- a/Dockerfile +++ b/Dockerfile @@ -20,4 +20,6 @@ RUN npm run build EXPOSE 8080 # Default command to run the MCP server with HTTP transport -CMD ["node", "build/index.js", "--transport", "http", "--port", "8080"] \ No newline at end of file +# Use ENTRYPOINT + CMD for flexibility +ENTRYPOINT ["node", "build/index.js"] +CMD ["--transport", "stdio", "--port", "8080"] \ No newline at end of file