Skip to content

Commit 56b6dc4

Browse files
ronan-apolloDaleSeo
authored andcommitted
correct the mcp port to 5000
Signed-off-by: Ronan Flynn-Curran <[email protected]>
1 parent e4545bd commit 56b6dc4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/source/deploy.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ title: Deploy the MCP Server
1616

1717
### Deploy Apollo Runtime container
1818

19-
Apollo Runtime container includes all services necessary to serve GraphQL and MCP requests, including Apollo Router and Apollo MCP Server. Both port `4000` (GraphQL) and `5050` (MCP) are exposed.
19+
Apollo Runtime container includes all services necessary to serve GraphQL and MCP requests, including Apollo Router and Apollo MCP Server. Both port `4000` (GraphQL) and `5000` (MCP) are exposed.
2020

2121
```bash title="Deploy with GraphOS (Recommended)"
2222
docker run \
2323
-p 4000:4000 \
24-
-p 5050:5050 \
24+
-p 5050:5000 \
2525
--env APOLLO_GRAPH_REF="<your-graph-ref>" \
2626
--env APOLLO_KEY="<your-graph-api-key>" \
2727
--env MCP_ENABLE=1 \
@@ -52,7 +52,7 @@ To learn more, review the [Apollo Runtime container documentation](/graphos/rout
5252

5353
Apollo MCP Server is available as a standalone Docker container. Container images are downloadable using the image `ghcr.io/apollographql/apollo-mcp-server`.
5454

55-
By default, the container expects all schema and operation files to be present in the `/data` folder within the container and that clients use Streamable HTTP transport on container port `5050`.
55+
By default, the container expects all schema and operation files to be present in the `/data` directory within the container and that clients use Streamable HTTP transport on container port `5050`.
5656

5757
Here's an example `docker run` command that runs Apollo MCP Server for the space dev example:
5858

0 commit comments

Comments
 (0)