diff --git a/.changesets/docs_mcp_port.md b/.changesets/docs_mcp_port.md new file mode 100644 index 0000000000..0a46016991 --- /dev/null +++ b/.changesets/docs_mcp_port.md @@ -0,0 +1,3 @@ +### docs: change MCP's default port from 5000 to 8000 ([PR #8375](https://github.com/apollographql/router/pull/8375)) + +MCP's default port changed from 5000 to 8000. \ No newline at end of file diff --git a/docs/source/routing/self-hosted/containerization/docker.mdx b/docs/source/routing/self-hosted/containerization/docker.mdx index 510cf2d9ae..3112c18b2e 100644 --- a/docs/source/routing/self-hosted/containerization/docker.mdx +++ b/docs/source/routing/self-hosted/containerization/docker.mdx @@ -39,12 +39,12 @@ Make sure to replace `` and `` with your gra ## Enabling MCP -To serve MCP requests, enable the [Apollo MCP Server](/apollo-mcp-server) using the `MCP_ENABLE` environment variable. You'll also need to export container port `5000` for Streamable HTTP connections to the MCP server, using the `-p 5050:5000` flag. +To serve MCP requests, enable the [Apollo MCP Server](/apollo-mcp-server) using the `MCP_ENABLE` environment variable. You'll also need to export the container port where the MCP server is running, port `8000` by default, for Streamable HTTP connections to the MCP server, using the `-p 8000:8000` flag. ```bash title="Docker" {3, 6} docker run \ -p 4000:4000 \ - -p 5050:5000 \ + -p 8000:8000 \ --env APOLLO_GRAPH_REF="" \ --env APOLLO_KEY="" \ --env MCP_ENABLE=1 \