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
+3-3Lines changed: 3 additions & 3 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 `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.
20
20
21
21
```bash title="Deploy with GraphOS (Recommended)"
22
22
docker run \
23
23
-p 4000:4000 \
24
-
-p 5050:5050 \
24
+
-p 5050:5000 \
25
25
--env APOLLO_GRAPH_REF="<your-graph-ref>" \
26
26
--env APOLLO_KEY="<your-graph-api-key>" \
27
27
--env MCP_ENABLE=1 \
@@ -52,7 +52,7 @@ To learn more, review the [Apollo Runtime container documentation](/graphos/rout
52
52
53
53
Apollo MCP Server is available as a standalone Docker container. Container images are downloadable using the image `ghcr.io/apollographql/apollo-mcp-server`.
54
54
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`.
56
56
57
57
Here's an example `docker run` command that runs Apollo MCP Server for the space dev example:
0 commit comments