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
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -64,11 +64,11 @@ The Auth0 Connection is the method clients use to authenticate. This guide uses
64
64
65
65
1. In your Auth0 dashboard, navigate to **Authentication** -> **Database**.
66
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 scratch file. We'll refer to it later as `<CONNECTION ID>`.
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. Copy the domain name from the **Identifier** for this API into your scratch file. It should look something like `dev-123456.us.auth0.com`, where `dev-123456` is your Auth0 tenant ID. We'll refer to it as `<AUTH0 DOMAIN>`.
70
-
1. Click the **API Explorer** tab. Copy the token value into your scratch file. We call it `<MGMT API ACCESS TOKEN>` in this guide.
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:
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 domainlevel, replacing `<CONNECTION ID>`, `<AUTH0 DOMAIN>`, and `<MGMT API ACCESS TOKEN>` with the values you copied in the previous steps:
72
72
73
73
```sh
74
74
curl --request PATCH \
@@ -103,7 +103,7 @@ Configure the MCP server to use the Auth0 instance for authentication.
103
103
- read:users # Adjust scopes as needed
104
104
```
105
105
106
-
1. Replace the `<AUTH0 DOMAIN>` with your own Auth0 domain from earlier. Remember, 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.
107
107
108
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`.
0 commit comments