You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/source/deploy.mdx
+5-7Lines changed: 5 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,12 +16,12 @@ title: Deploy the MCP Server
16
16
17
17
### Deploy Apollo Runtime container
18
18
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.
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.
20
20
21
21
```bash title="Deploy with GraphOS (Recommended)"
22
22
docker run \
23
23
-p 4000:4000 \
24
-
-p 5000:5000 \
24
+
-p 5050:5050 \
25
25
--env APOLLO_GRAPH_REF="<your-graph-ref>" \
26
26
--env APOLLO_KEY="<your-graph-api-key>" \
27
27
--env MCP_ENABLE=1 \
@@ -50,11 +50,9 @@ To learn more, review the [Apollo Runtime container documentation](/graphos/rout
50
50
51
51
### Deploy standalone Apollo MCP Server container
52
52
53
-
Apollo MCP Server is available as a standalone Docker container. Container images are downloadable using
54
-
the image `ghcr.io/apollographql/apollo-mcp-server`.
53
+
Apollo MCP Server is available as a standalone Docker container. Container images are downloadable using the image `ghcr.io/apollographql/apollo-mcp-server`.
55
54
56
-
By default, the container expects all schema and operation files to be present in the `/data` folder within the container
57
-
and that clients use Streamable HTTP transport on container port `5000`.
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`.
58
56
59
57
Here's an example `docker run` command that runs Apollo MCP Server for the space dev example:
0 commit comments