Skip to content

Commit d19cbaf

Browse files
committed
address AI Librarian style comments
1 parent d1b2ea1 commit d19cbaf

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

docs/source/command-reference.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ transport:
295295
- profile
296296
```
297297
298-
## Using `rover dev`
298+
## Run a local graph with MCP server using `rover dev`
299299

300300
You can use the [`rover dev`](/rover/commands/dev) command of Rover CLI `v0.35` or later to run an Apollo MCP Server instance for local development alongside your local graph. Use the `--mcp` flag to start an MCP server and provide an optional configuration file.
301301

docs/source/guides/index.mdx

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -186,26 +186,26 @@ introspection:
186186
apollo-mcp-server <path to the preceding config>
187187
```
188188

189-
## Authorization
189+
## Set up authorization
190190

191191
The Apollo MCP server supports authorizing clients (e.g. LLMs) in accordance with [the MCP specification](https://modelcontextprotocol.io/specification/2025-06-18/basic/authorization).
192192

193193
Depending on whether you are connecting internal agents (first-party) or external agents (third-party, such as Claude, ChatGPT, or other public AI assistants), the steps to configure authorization will differ.
194194

195-
For internal / first-party agents, you will need:
195+
For internal (first-party) agents, you need:
196196

197-
1. An [OAuth 2.1-compliant](https://oauth.net/2.1/) Identity Provider (for example, your own in-house IdP or a third-party IdP such as Auth0, Okta, Keycloak, etc).
198-
2. An Apollo Router [configured to use JWT authentication](/graphos/routing/security/jwt).
197+
1. An [OAuth 2.1-compliant](https://oauth.net/2.1/) Identity Provider (for example, your own in-house IdP or a third-party IdP such as Auth0, Okta, Keycloak, etc)
198+
2. An Apollo Router [configured to use JWT authentication](/graphos/routing/security/jwt)
199199

200-
For external / third-party agents, in addition to the above, you will also need:
200+
For external (third-party) agents, in addition to the preceding items, you also need:
201201

202-
3. A configuration file for the MCP server that [defines the `auth` settings](/apollo-mcp-server/command-reference#auth).
202+
3. A configuration file for the MCP server that [defines the `auth` settings](/apollo-mcp-server/command-reference#auth)
203203

204-
### Example: Auth configuration with Auth0 and third-party agents
204+
### Example: Configure authentication with Auth0 and third-party agents
205205

206206
Here is an example of how to set up Apollo MCP Server and Apollo Router, with Auth0 as the Identity Provider for external/third-party access.
207207

208-
1. [Set up an Auth0 API](https://auth0.com/docs/get-started/auth0-overview/set-up-apis). You'll need your Auth0 domain for the next step.
208+
1. [Set up an Auth0 API](https://auth0.com/docs/get-started/auth0-overview/set-up-apis). You need your Auth0 domain for the next step.
209209
2. Configure the Apollo Router to [use JWT authentication](/graphos/routing/security/jwt):
210210

211211
This example router configuration enforces authentication on all requests and uses the JWKS endpoint provided by Auth0 to validate JWTs:
@@ -222,7 +222,7 @@ Here is an example of how to set up Apollo MCP Server and Apollo Router, with Au
222222

223223
3. Configure the MCP server to use the same Auth0 instance for authentication.
224224

225-
This example MCP server configuration enforces authentication on all requests, delegating the actual login process to our previously configured Auth0 instance.
225+
This example MCP server configuration enforces authentication on all requests, delegating the actual login process to your previously-configured Auth0 instance.
226226

227227
```yaml title="Example MCP config for authentication"
228228
transport:

0 commit comments

Comments
 (0)