Skip to content

Commit d64f675

Browse files
authored
docs: change MCP's default port from 5000 to 8000 (#55)
* docs: change MCP's default port from 5000 to 8000 * bump image version
1 parent 3d0c2ce commit d64f675

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ARG APOLLO_ROUTER_VERSION=2.7.0
88
# renovate: datasource=github-releases depName=apollographql/apollo-mcp-server
99
ARG 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
1212
LABEL org.opencontainers.image.vendor="Apollo GraphQL"
1313
LABEL org.opencontainers.image.title="Apollo Runtime"
1414
LABEL org.opencontainers.image.description="A GraphQL Runtime for serving Supergraphs and enabling AI"

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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 \
3838
ghcr.io/apollographql/apollo-runtime:latest
3939
```
4040
We 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

examples/compose.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)