Skip to content

Commit 4f690ee

Browse files
authored
docs: updatings docs for rover 0.35 and fixing some issues (#221)
* docs: updatings docs for rover 0.35 and fixing some issues * docs: fixing rover dev cmd example * docs: removing mcp-config reference * docs: adjusting rover dev --mcp reference * chore: fixing phrasing * docs: fixing rover dev options table * docs: removing table that is no longer needed
1 parent f5087ae commit 4f690ee

File tree

2 files changed

+4
-11
lines changed

2 files changed

+4
-11
lines changed

docs/source/command-reference.mdx

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ docker image pull ghcr.io/apollographql/apollo-mcp-server:v0.6.1-rc.1
4141
The container sets a few defaults for ease of use:
4242

4343
- **Working Directory is `/data`**: Make sure to mount static schemas / operations to this location
44-
using the volume flag when running [(`-v` / `--version`)](https://docs.docker.com/reference/cli/docker/container/run/#volume).
44+
using the volume flag when running [(`-v` / `--volume`)](https://docs.docker.com/reference/cli/docker/container/run/#volume).
4545
- **HTTP Streamable Transport on port 5000**: Make sure to export container port 5000 for HTTP Streamable connections to
4646
the MCP server using the port flag when running [(`-p` / `--port`)](https://docs.docker.com/reference/cli/docker/container/run/#publish)
4747

@@ -215,10 +215,4 @@ The default value for `type` is `"stdio"`.
215215

216216
You can use the [`rover dev`](/rover/commands/dev) command of Rover CLI v0.32 or later to run an Apollo MCP Server instance for local development.
217217

218-
Running `rover dev --mcp` starts an MCP Server. Additional options, `--mcp*`, directly configure the MCP Server.
219-
220-
The mapping of `rover dev` options to MCP Server options:
221-
222-
| `rover dev` option | Equivalent MCP Server option | Description |
223-
| :------------------------------ | :--------------------------- | :---------------------------------------- |
224-
| `--mcp-config <PATH/TO/CONFIG>` | `<PATH/TO/CONFIG>` | Path to the MCP server configuration file |
218+
Running `rover dev --mcp` starts an MCP Server. An optional configuration file path can be provided to configure the MCP server via `rover dev --mcp <PATH/TO/CONFIG>`.

docs/source/quickstart.mdx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ If you learn best with videos and exercises, this [interactive course](https://w
3939
## Prerequisites
4040

4141
- Clone the [Apollo MCP Server repo](https://github.com/apollographql/apollo-mcp-server)
42-
- Install [Apollo Rover CLI](/rover/getting-started) v0.32 or later
42+
- Install [Apollo Rover CLI](/rover/getting-started) v0.35 or later
4343

4444
## Step 1: Understand the Example
4545

@@ -67,8 +67,7 @@ The example files located in `graphql/TheSpaceDevs/` include:
6767
6868
```sh showLineNumbers=false
6969
rover dev --supergraph-config ./graphql/TheSpaceDevs/supergraph.yaml \
70-
--mcp \
71-
--mcp-config <path to the preceding config>
70+
--mcp <path to the preceding config>
7271
```
7372

7473
This command:

0 commit comments

Comments
 (0)