Skip to content

Commit 373b34d

Browse files
committed
docs: change default port from 5000 to 8000
1 parent 4bd07ba commit 373b34d

File tree

2 files changed

+17
-17
lines changed

2 files changed

+17
-17
lines changed

docs/source/deploy.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ Use the standalone Apollo MCP Server container if you already have a GraphQL API
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` directory 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 `8000`.
5656

5757
Here's an example `docker run` command that runs Apollo MCP Server for an example using [TheSpaceDevs graph](https://thespacedevs-production.up.railway.app/):
5858

@@ -71,8 +71,8 @@ schema:
7171
docker run \
7272
-it --rm \
7373
--name apollo-mcp-server \
74-
-p 5050:5000 \
75-
-v <path/to>/mcp_config.yaml:/config.yaml \
74+
-p 8000:8000 \
75+
-v <path/to>/mcp_config.yaml \
7676
-v $PWD/graphql/TheSpaceDevs:/data \
7777
--pull always \
7878
ghcr.io/apollographql/apollo-mcp-server:latest /config.yaml

docs/source/quickstart.mdx

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -61,12 +61,12 @@ You can start your MCP server locally with `rover dev`.
6161

6262
</Tabs>
6363

64-
1. You should see some output indicating that the GraphQL server is running at `http://localhost:4000` and the MCP server is running at `http://127.0.0.1:5050`.
64+
1. You should see some output indicating that the GraphQL server is running at `http://localhost:4000` and the MCP server is running at `http://127.0.0.1:8000`.
6565

6666
1. In a new terminal window, run the MCP Inspector to verify the server is running:
6767

6868
```terminal showLineNumbers=false
69-
npx @modelcontextprotocol/inspector http://127.0.0.1:5050/mcp --transport http
69+
npx @modelcontextprotocol/inspector http://127.0.0.1:8000/mcp --transport http
7070
```
7171

7272
1. This will automatically open your browser to `http://127.0.0.1:6274`.
@@ -94,7 +94,7 @@ Copy the configuration:
9494
"command": "npx",
9595
"args": [
9696
"mcp-remote",
97-
"http://127.0.0.1:5050/mcp"
97+
"http://127.0.0.1:8000/mcp"
9898
]
9999
}
100100
}
@@ -107,7 +107,7 @@ Copy the configuration:
107107
Install using the CLI:
108108

109109
```bash
110-
claude mcp add apollo-mcp npx mcp-remote http://127.0.0.1:5050/mcp
110+
claude mcp add apollo-mcp npx mcp-remote http://127.0.0.1:8000/mcp
111111
```
112112
</ExpansionPanel>
113113

@@ -127,7 +127,7 @@ Or install manually:
127127
1. Go to **Cursor Settings****MCP****Add new MCP Server**
128128
2. Name: `Apollo MCP` (choose a title)
129129
3. Command: `npx`
130-
4. Arguments: `["mcp-remote", "http://127.0.0.1:5050/mcp"]`
130+
4. Arguments: `["mcp-remote", "http://127.0.0.1:8000/mcp"]`
131131
</ExpansionPanel>
132132

133133
<ExpansionPanel title="Goose">
@@ -147,21 +147,21 @@ default:
147147
command: npx
148148
args:
149149
- mcp-remote
150-
- http://127.0.0.1:5050/mcp
150+
- http://127.0.0.1:8000/mcp
151151
```
152152
153153
Or use the Goose CLI to add the MCP server:
154154
155155
```bash
156-
goose mcp add apollo-mcp npx mcp-remote http://127.0.0.1:5050/mcp
156+
goose mcp add apollo-mcp npx mcp-remote http://127.0.0.1:8000/mcp
157157
```
158158
</ExpansionPanel>
159159

160160
<ExpansionPanel title="Cline (VS Code Extension)">
161161
1. Go to **Advanced settings****Extensions****Add custom extension**
162162
2. Name: `Apollo MCP`
163163
3. Type: **STDIO**
164-
4. Command: `npx mcp-remote http://127.0.0.1:5050/mcp`
164+
4. Command: `npx mcp-remote http://127.0.0.1:8000/mcp`
165165
</ExpansionPanel>
166166

167167
<ExpansionPanel title="OpenCode">
@@ -176,7 +176,7 @@ Edit `~/.config/opencode/opencode.json`:
176176
"command": [
177177
"npx",
178178
"mcp-remote",
179-
"http://127.0.0.1:5050/mcp"
179+
"http://127.0.0.1:8000/mcp"
180180
],
181181
"enabled": true
182182
}
@@ -189,7 +189,7 @@ Edit `~/.config/opencode/opencode.json`:
189189
1. Go to **Windsurf Settings → MCP → Add new MCP Server**
190190
2. Name: `Apollo MCP`
191191
3. Command: `npx`
192-
4. Arguments: `["mcp-remote", "http://127.0.0.1:5050/mcp"]`
192+
4. Arguments: `["mcp-remote", "http://127.0.0.1:8000/mcp"]`
193193

194194
Alternatively, edit your Windsurf configuration file directly:
195195

@@ -200,7 +200,7 @@ Alternatively, edit your Windsurf configuration file directly:
200200
"command": "npx",
201201
"args": [
202202
"mcp-remote",
203-
"http://127.0.0.1:5050/mcp"
203+
"http://127.0.0.1:8000/mcp"
204204
]
205205
}
206206
}
@@ -265,7 +265,7 @@ Your project includes a pre-configured `mcp.Dockerfile` for easy deployment. Thi
265265
1. Run locally:
266266

267267
```bash
268-
docker run -p 4000:4000 -p 5050:5000 \
268+
docker run -p 4000:4000 -p 8000:8000 \
269269
-e APOLLO_KEY=$APOLLO_KEY \
270270
-e APOLLO_GRAPH_REF=$APOLLO_GRAPH_REF \
271271
-e MCP_ENABLE=1 \
@@ -280,7 +280,7 @@ Your project includes a pre-configured `mcp.Dockerfile` for easy deployment. Thi
280280
| ---------------------------- | ------------------------------- | -------- |
281281
| `APOLLO_KEY` | Your graph's API key | Yes |
282282
| `APOLLO_GRAPH_REF` | Your graph reference | Yes |
283-
| `APOLLO_MCP_TRANSPORT__PORT` | MCP server port (default: 5000) | No |
283+
| `APOLLO_MCP_TRANSPORT__PORT` | MCP server port (default: 8000) | No |
284284
| `APOLLO_ROUTER_PORT` | Router port (default: 4000) | No |
285285

286286
For more deployment options, see the [Deploy the MCP Server](/apollo-mcp-server/deploy) page.
@@ -312,7 +312,7 @@ After deploying, update your MCP client configuration to use the deployed URL:
312312

313313
**Connection refused errors:**
314314
- Confirm the server is running on the correct port
315-
- Verify firewall settings allow connections to localhost:5050
315+
- Verify firewall settings allow connections to localhost:8000
316316
- For remote connections, ensure the host is set to `0.0.0.0` in your config
317317

318318
**Authentication issues:**

0 commit comments

Comments
 (0)