You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you plan on registering stdio-based MCP servers that rely on `npx` or `uvx`, use mcpjungle's `stdio` tagged docker image instead.
166
168
```bash
167
-
MCPJUNGLE_IMAGE_TAG=latest-stdio docker-compose up -d
169
+
MCPJUNGLE_IMAGE_TAG=latest-stdio dockercompose up -d
168
170
```
169
171
170
172
> [!NOTE]
@@ -232,7 +234,7 @@ You can register this MCP server with MCPJungle:
232
234
mcpjungle register --name calculator --description "Provides some basic math tools" --url http://127.0.0.1:8000/mcp
233
235
```
234
236
235
-
If you used docker-compose to run the server, and you're not on Linux, you will have to use `host.docker.internal` instead of your local loopback address.
237
+
If you used dockercompose to run the server, and you're not on Linux, you will have to use `host.docker.internal` instead of your local loopback address.
236
238
```bash
237
239
mcpjungle register --name calculator --description "Provides some basic math tools" --url http://host.docker.internal:8000/mcp
238
240
```
@@ -513,8 +515,8 @@ mcpjungle start --prod
513
515
export SERVER_MODE=production
514
516
mcpjungle start
515
517
516
-
#this also works when running the server via docker-compose
517
-
SERVER_MODE=production docker-compose up
518
+
#Or use the production docker compose file as described above
519
+
docker compose -f docker-compose.prod.yaml up -d
518
520
```
519
521
520
522
By default, mcpjungle server runs in `development` mode which is ideal for individuals running it locally.
0 commit comments