File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ ARG APOLLO_ROUTER_VERSION=2.7.0
88# renovate: datasource=github-releases depName=apollographql/apollo-mcp-server
99ARG APOLLO_MCP_SERVER_VERSION=1.0.0
1010
11- LABEL org.opencontainers.image.version=0.0.27
11+ LABEL org.opencontainers.image.version=0.0.28
1212LABEL org.opencontainers.image.vendor="Apollo GraphQL"
1313LABEL org.opencontainers.image.title="Apollo Runtime"
1414LABEL org.opencontainers.image.description="A GraphQL Runtime for serving Supergraphs and enabling AI"
Original file line number Diff line number Diff line change @@ -34,12 +34,12 @@ docker run \
3434--env MCP_ENABLE=1 \
3535--rm \
3636-p 4000:4000 \
37- -p 5050:5000 \
37+ -p 8000:8000 \
3838ghcr.io/apollographql/apollo-runtime:latest
3939```
4040We open two ports in the above command:
4141- 4000 is where the router is listening. Make your GraphQL queries here.
42- - 5050 is where the MCP server is mounted, specifically at the ` /mcp ` path. Connect your assistants to this port.
42+ - 8000 is where the MCP server is mounted, specifically at the ` /mcp ` path. Connect your assistants to this port.
4343
4444### Running the MCP Server
4545
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ services:
44 build : ..
55 ports :
66 - " 4000:4000"
7- - " 5050:5000 "
7+ - " 8000:8000 "
88 volumes :
99 - type : bind
1010 source : ./router_config.yaml
You can’t perform that action at this time.
0 commit comments