Skip to content

Commit 062016c

Browse files
committed
fix: docs styling
1 parent 68f0751 commit 062016c

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docs/source/guides/auth.mdx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -64,11 +64,11 @@ The Auth0 Connection is the method clients use to authenticate. This guide uses
6464

6565
1. In your Auth0 dashboard, navigate to **Authentication** -> **Database**.
6666
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>`.
6868
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 domain level, replacing `<CONNECTION ID>`, `<AUTH0 DOMAIN>`, and `<MGMT API ACCESS TOKEN>` with the values you copied in the previous steps:
7272

7373
```sh
7474
curl --request PATCH \
@@ -103,7 +103,7 @@ Configure the MCP server to use the Auth0 instance for authentication.
103103
- read:users # Adjust scopes as needed
104104
```
105105
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.
107107

108108
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`.
109109

0 commit comments

Comments
 (0)