Skip to content

Commit c7bf6cf

Browse files
committed
fix: bind HTTP server to 0.0.0.0
1 parent 731f557 commit c7bf6cf

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

helm/fuel-mcp-server/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: 0.1.9
18+
version: 0.1.10
1919

2020
# This is the version number of the application being deployed. This version number should be
2121
# incremented each time you make changes to the application. Versions are not expected to

src/transports/http.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -167,9 +167,9 @@ export async function startHttpServer(
167167
});
168168
});
169169

170-
const httpServer = app.listen(port, "127.0.0.1", () => {
171-
console.log(`Fuel MCP Server running at http://127.0.0.1:${port}/mcp`);
172-
console.log(`Health check: http://127.0.0.1:${port}/health`);
170+
const httpServer = app.listen(port, "0.0.0.0", () => {
171+
console.log(`Fuel MCP Server running at http://0.0.0.0:${port}/mcp`);
172+
console.log(`Health check: http://0.0.0.0:${port}/health`);
173173
});
174174

175175
process.on("SIGINT", async () => {

0 commit comments

Comments
 (0)