Skip to content

Commit 5a23154

Browse files
committed
Merge branch 'main' into update-tag
2 parents 6c2282f + 5853acf commit 5a23154

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
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.11
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.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ describe("HTTP Transport Mode", () => {
178178

179179
expect(mockApp.listen).toHaveBeenCalledWith(
180180
3500,
181-
"127.0.0.1",
181+
"0.0.0.0",
182182
expect.any(Function)
183183
);
184184
expect(mockMCPServer.connect).toHaveBeenCalled();
@@ -245,7 +245,7 @@ describe("HTTP Transport Mode", () => {
245245

246246
expect(mockApp.listen).toHaveBeenCalledWith(
247247
3501,
248-
"127.0.0.1",
248+
"0.0.0.0",
249249
expect.any(Function)
250250
);
251251

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)