Skip to content

Commit 6c3984d

Browse files
authored
Clarify Auth0 Domain instructions
1 parent d9a9690 commit 6c3984d

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

docs/source/guides/auth.mdx

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -62,12 +62,13 @@ This guide uses [Auth0](https://auth0.com/) as the Identity Provider.
6262

6363
The Auth0 Connection is the method clients use to authenticate. This guide uses the default **Username-Password-Authentication** connection.
6464

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 Auth0's dashboard, copy the **Connection Identifier** at the top of the page, you'll need it soon. It should start with something like `con_`.
6868
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 this API. It should look something like `dev-123456.us.auth0.com`, where `dev-123456` is your Auth0 tenant ID.
70+
1. Click the **API Explorer** tab. Copy the token value, you also need it for the next command.
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:
7172

7273
```sh
7374
curl --request PATCH \
@@ -102,7 +103,7 @@ Configure the MCP server to use the Auth0 instance for authentication.
102103
- read:users # Adjust scopes as needed
103104
```
104105
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. Remember, it should look something like `dev-123456.us.auth0.com`, where `dev-123456` is your Auth0 tenant ID.
106107

107108
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`.
108109

0 commit comments

Comments
 (0)