You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/source/guides/auth.mdx
+10-9Lines changed: 10 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -62,17 +62,18 @@ This guide uses [Auth0](https://auth0.com/) as the Identity Provider.
62
62
63
63
The Auth0 Connection is the method clients use to authenticate. This guide uses the default **Username-Password-Authentication** connection.
64
64
65
-
1. In your dashboard, navigate to **Authentication** -> **Database**.
66
-
1. Create the default **Username-Password-Authentication** connection. Click the **Try Connection** button to test it.
67
-
1.Copy the **Connection Identifier** at the top of the page, you need it for the next step. It should start with something like `con_`.
65
+
1. In your Auth0 dashboard, navigate to **Authentication** -> **Database**.
66
+
1. Create the default **Username-Password-Authentication** connection. Click the **Try Connection** button to test it and set up a username and password for later.
67
+
1.Back on your Auth0 dashboard, note the **Connection Identifier** at the top of the page. It should start with something like `con_`. Copy it into a temporary location. This guide refers to it as `<CONNECTION ID>`.
68
68
1. Navigate to **Applications** -> **APIs** -> **Auth0 Management API**.
69
-
1. Click the **API Explorer** tab. Copy the token value, you also need it for the next step.
70
-
1. Run the following `curl` command to promote the connection to domain-level, replacing `CONNECTION_ID` and `MGMT_API_ACCESS_TOKEN` with the values you copied in the previous steps:
69
+
1. Copy the **Identifier** for the Auth0 Management API to a temporary location. It should look something like `dev-123456.us.auth0.com`, where `dev-123456` is your Auth0 tenant ID. This guide refers to it as `<AUTH0 DOMAIN>`.
70
+
1. Click the **API Explorer** tab. Copy the token value to a temporary location. This guide refers to it as `<MGMT API ACCESS TOKEN>`.
71
+
1. Run the following `curl` command to promote the connection to domain level, replacing `<CONNECTION ID>`, `<AUTH0 DOMAIN>`, and `<MGMT API ACCESS TOKEN>` with the values you copied in the previous steps:
--header 'authorization: Bearer <MGMT API ACCESS TOKEN>' \
76
77
--header 'cache-control: no-cache' \
77
78
--header 'content-type: application/json' \
78
79
--data '{ "is_domain_connection": true }'
@@ -102,7 +103,7 @@ Configure the MCP server to use the Auth0 instance for authentication.
102
103
- read:users # Adjust scopes as needed
103
104
```
104
105
105
-
1. Replace the `<AUTH0 DOMAIN>` with your own Auth0 domain. It should look something like `dev-123456.us.auth0.com`, where `dev-123456` is your Auth0 tenant ID.
106
+
1. Replace the `<AUTH0 DOMAIN>` with your own Auth0 domain from earlier.
106
107
107
108
1. Replace the `<AUTH0 DEFAULT AUDIENCE>` with the matching `Identifier` you set when creating the Auth0 API. In this guide, you used `http://localhost:5000/mcp-example`.
108
109
@@ -154,7 +155,7 @@ You need a graph's credentials and a valid GraphOS plan to use the router's auth
154
155
155
156
Note: You don't need to run this command.
156
157
157
-
1. Retrieve the values for `YOUR_APOLLO_KEY` and `YOUR_APOLLO_GRAPH_REF`.
158
+
1. Retrieve the values for `YOUR_APOLLO_KEY` and `YOUR_APOLLO_GRAPH_REF` from the modal and click **Finish later**.
0 commit comments