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
The easiest way to run `gx-mcp-server` is using the official Docker image:
334
+
The easiest way to run `gx-mcp-server` is using the official Docker image. By default, the container runs in `stdio` mode. You can switch to `http` mode by setting the `MCP_MODE` environment variable to `http`.
298
335
299
336
```bash
300
-
# Run latest stable version
301
-
docker run -d -p 8000:8000 --name gx-mcp-server davidf9999/gx-mcp-server:latest
337
+
# Run latest stable version in stdio mode
338
+
docker run --rm -i davidf9999/gx-mcp-server:latest
339
+
340
+
# Run latest stable version in http mode
341
+
docker run -d -p 8000:8000 --name gx-mcp-server -e MCP_MODE=http davidf9999/gx-mcp-server:latest
302
342
303
343
# Run with authentication
304
344
docker run -d -p 8000:8000 --name gx-mcp-server \
345
+
-e MCP_MODE=http \
305
346
-e MCP_SERVER_USER=myuser \
306
347
-e MCP_SERVER_PASSWORD=mypass \
307
348
davidf9999/gx-mcp-server:latest
308
349
309
350
# Run with file access (for loading local CSV files)
0 commit comments