File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ type: application
15
15
# This is the chart version. This version number should be incremented each time you make changes
16
16
# to the chart and its templates, including the app version.
17
17
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18
- version : 0.1.9
18
+ version : 0.1.11
19
19
20
20
# This is the version number of the application being deployed. This version number should be
21
21
# incremented each time you make changes to the application. Versions are not expected to
Original file line number Diff line number Diff line change @@ -178,7 +178,7 @@ describe("HTTP Transport Mode", () => {
178
178
179
179
expect ( mockApp . listen ) . toHaveBeenCalledWith (
180
180
3500 ,
181
- "127 .0.0.1 " ,
181
+ "0 .0.0.0 " ,
182
182
expect . any ( Function )
183
183
) ;
184
184
expect ( mockMCPServer . connect ) . toHaveBeenCalled ( ) ;
@@ -245,7 +245,7 @@ describe("HTTP Transport Mode", () => {
245
245
246
246
expect ( mockApp . listen ) . toHaveBeenCalledWith (
247
247
3501 ,
248
- "127 .0.0.1 " ,
248
+ "0 .0.0.0 " ,
249
249
expect . any ( Function )
250
250
) ;
251
251
Original file line number Diff line number Diff line change @@ -167,9 +167,9 @@ export async function startHttpServer(
167
167
} ) ;
168
168
} ) ;
169
169
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` ) ;
173
173
} ) ;
174
174
175
175
process . on ( "SIGINT" , async ( ) => {
You can’t perform that action at this time.
0 commit comments