From caf50b48269ef1f94c9d1cf7ac61b16fa517157f Mon Sep 17 00:00:00 2001 From: Dale Seo Date: Fri, 3 Oct 2025 16:30:19 -0400 Subject: [PATCH 1/2] docs: change MCP's default port from 5000 to 8000 --- README.md | 4 ++-- examples/compose.yaml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) 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 From f138519619890f4751f60cad6b2b43a32cfe9f90 Mon Sep 17 00:00:00 2001 From: Dale Seo Date: Fri, 3 Oct 2025 16:34:05 -0400 Subject: [PATCH 2/2] bump image version --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"