Skip to content

Commit 841eb37

Browse files
committed
Add redirects to OAuth authentication articles
1 parent 845d12d commit 841eb37

File tree

3 files changed

+18
-1
lines changed

3 files changed

+18
-1
lines changed

docs/articles/configuring-auth0-for-mcp-auth.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -158,6 +158,15 @@ your MCP server:
158158
npx @modelcontextprotocol/inspector
159159
```
160160

161+
To connect to your remote Zuplo MCP server in the Inspector UI:
162+
163+
1. Set the **Transport Type** to "Streamable HTTP"
164+
2. Set the **URL** to your Zuplo gateway with the route used by the MCP Server
165+
Handler (i.e., `https://my-gateway.zuplo.dev/mcp`)
166+
3. If you have configured OAuth authentication, you will need to login using the
167+
OAuth flow using the **Open Auth Settings** button.
168+
4. Hit **Connect**.
169+
161170
For debugging your OAuth configuration, hit the **Open Auth Settings** button in
162171
the Inspector UI to start the OAuth flow. When first setting up the OAuth flow,
163172
it is recommmended to use the **Guided OAuth Flow** which you will see when you

docs/handlers/mcp-server.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,6 +263,7 @@ enable OAuth authentication on your MCP Server:
263263

264264
1. Create an OAuth policy on your MCP Server route. This policy will need to
265265
have the option `"oAuthResourceMetadataEnabled": true`, for example:
266+
266267
```json
267268
{
268269
"name": "mcp-oauth-inbound",
@@ -278,6 +279,12 @@ enable OAuth authentication on your MCP Server:
278279
}
279280
}
280281
```
282+
283+
In this example, the audience should be the identifier of the Auth0 API you
284+
want your MCP Server to be protected by. For more information on configuring
285+
OAuth JWT policies, see the
286+
[OAuth Policy docs](../articles/oauth-authentication.md).
287+
281288
2. Add the OAuth policy to the MCP Server route. For example:
282289

283290
```json
@@ -421,7 +428,7 @@ To connect to your remote Zuplo MCP server in the Inspector UI:
421428
Handler (i.e., `https://my-gateway.zuplo.dev/mcp`)
422429
3. If you have configured OAuth authentication, you will need to login using the
423430
OAuth flow using the **Open Auth Settings** button.
424-
4. Hit **Connect**
431+
4. Hit **Connect**.
425432

426433
### Curl
427434

sidebar.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -535,6 +535,7 @@ export const policies: Navigation = [
535535
type: "category",
536536
label: "Upstream Authentication",
537537
items: [
538+
"articles/oauth-authentication",
538539
"policies/upstream-azure-ad-service-auth-inbound",
539540
"policies/upstream-gcp-service-auth-inbound",
540541
"policies/upstream-gcp-federated-auth-inbound",

0 commit comments

Comments
 (0)