diff --git a/Dockerfile b/Dockerfile index 67995ce..e2bb4fa 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,7 @@ ARG APOLLO_ROUTER_VERSION=2.7.0 # renovate: datasource=github-releases depName=apollographql/apollo-mcp-server ARG APOLLO_MCP_SERVER_VERSION=0.9.0 -LABEL org.opencontainers.image.version=0.0.25 +LABEL org.opencontainers.image.version=0.0.26 LABEL org.opencontainers.image.vendor="Apollo GraphQL" LABEL org.opencontainers.image.title="Apollo Runtime" LABEL org.opencontainers.image.description="A GraphQL Runtime for serving Supergraphs and enabling AI" diff --git a/README.md b/README.md index 546eabe..07cfae2 100644 --- a/README.md +++ b/README.md @@ -34,12 +34,12 @@ docker run \ --env MCP_ENABLE=1 \ --rm \ -p 4000:4000 \ --p 5050:5000 \ +-p 8000:8000 \ ghcr.io/apollographql/apollo-runtime:latest ``` We open two ports in the above command: - 4000 is where the router is listening. Make your GraphQL queries here. -- 5050 is where the MCP server is mounted, specifically at the `/mcp` path. Connect your assistants to this port. +- 8000 is where the MCP server is mounted, specifically at the `/mcp` path. Connect your assistants to this port. ### Running the MCP Server diff --git a/examples/compose.yaml b/examples/compose.yaml index 46aedcd..b313c1c 100644 --- a/examples/compose.yaml +++ b/examples/compose.yaml @@ -4,7 +4,7 @@ services: build: .. ports: - "4000:4000" - - "5050:5000" + - "8000:8000" volumes: - type: bind source: ./router_config.yaml