Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion examples/compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ services:
build: ..
ports:
- "4000:4000"
- "5050:5000"
- "8000:8000"
volumes:
- type: bind
source: ./router_config.yaml
Expand Down