Skip to content

Commit ffd5eda

Browse files
danbarrjhrozek
authored andcommitted
Rename files to mdx, fix up admonition syntax
Signed-off-by: Dan Barr <6922515+danbarr@users.noreply.github.com>
1 parent b252dc6 commit ffd5eda

File tree

7 files changed

+19
-19
lines changed

7 files changed

+19
-19
lines changed
File renamed without changes.

docs/toolhive/_partials/_basic-cedar-config.md renamed to docs/toolhive/_partials/_basic-cedar-config.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,6 @@ ownership or sensitivity labels.
2727
:::tip
2828

2929
For more policy examples and advanced usage, see
30-
[Cedar policies](../concepts/cedar-policies.md).
30+
[Cedar policies](../concepts/cedar-policies.mdx).
3131

3232
:::

docs/toolhive/_partials/_oidc-prerequisites.md renamed to docs/toolhive/_partials/_oidc-prerequisites.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ service account tokens (for example, in Kubernetes). ToolHive never sees your
1919
password, only signed tokens from your identity provider.
2020

2121
For background on authentication, authorization, and Cedar policy examples, see
22-
[Authentication and authorization framework](../concepts/auth-framework.md).
22+
[Authentication and authorization framework](../concepts/auth-framework.mdx).
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -254,4 +254,4 @@ requirements.
254254
## Related information
255255

256256
- For detailed policy writing guidance, see
257-
[Cedar policies](./cedar-policies.md)
257+
[Cedar policies](./cedar-policies.mdx)
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ policies, configure authorization settings, and troubleshoot common issues.
1111
:::info
1212

1313
For the conceptual overview of authentication and authorization, see
14-
[Authentication and authorization framework](./auth-framework.md).
14+
[Authentication and authorization framework](./auth-framework.mdx).
1515

1616
:::
1717

@@ -403,6 +403,6 @@ When policies don't work as expected, follow this systematic approach:
403403
## Related information
404404

405405
- For the conceptual overview, see
406-
[Authentication and authorization framework](./auth-framework.md)
406+
[Authentication and authorization framework](./auth-framework.mdx)
407407
- For detailed Cedar policy syntax, see
408408
[Cedar documentation](https://docs.cedarpolicy.com/)

docs/toolhive/guides-cli/auth.mdx

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ description:
55
ToolHive CLI.
66
---
77

8-
import OidcPrerequisites from '../_partials/_oidc-prerequisites.md';
9-
import BasicCedarConfig from '../_partials/_basic-cedar-config.md';
10-
import AuthTroubleshooting from '../_partials/_auth-troubleshooting.md';
8+
import OidcPrerequisites from '../_partials/_oidc-prerequisites.mdx';
9+
import BasicCedarConfig from '../_partials/_basic-cedar-config.mdx';
10+
import AuthTroubleshooting from '../_partials/_auth-troubleshooting.mdx';
1111

1212
This guide shows you how to secure your MCP servers using OAuth-based
1313
authentication and Cedar-based authorization policies with the ToolHive CLI.
@@ -63,7 +63,7 @@ The token should:
6363
- Not be expired
6464
- Have a valid signature
6565

66-
:::note Client support limitations
66+
:::note[Client support limitations]
6767

6868
Client support for authentication is limited at this time. While some clients
6969
support HTTP headers with SSE MCP client configurations, we do not recommend
@@ -75,7 +75,7 @@ for clients. Stay tuned for updates on this feature.
7575

7676
:::
7777

78-
:::note Obtaining JWT tokens
78+
:::note[Obtaining JWT tokens]
7979

8080
How to obtain JWT tokens varies by identity provider and is outside the scope of
8181
this guide. Consult your identity provider's documentation for specific
@@ -158,7 +158,7 @@ If you're having issues with the CLI:
158158
## Related information
159159

160160
- For conceptual understanding, see
161-
[Authentication and authorization framework](../concepts/auth-framework.md)
161+
[Authentication and authorization framework](../concepts/auth-framework.mdx)
162162
- For detailed Cedar policy syntax, see
163-
[Cedar policies](../concepts/cedar-policies.md) and the
163+
[Cedar policies](../concepts/cedar-policies.mdx) and the
164164
[Cedar documentation](https://docs.cedarpolicy.com/)

docs/toolhive/guides-k8s/auth-k8s.mdx

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ description:
55
using the ToolHive Operator.
66
---
77

8-
import OidcPrerequisites from '../_partials/_oidc-prerequisites.md';
9-
import BasicCedarConfig from '../_partials/_basic-cedar-config.md';
10-
import AuthTroubleshooting from '../_partials/_auth-troubleshooting.md';
8+
import OidcPrerequisites from '../_partials/_oidc-prerequisites.mdx';
9+
import BasicCedarConfig from '../_partials/_basic-cedar-config.mdx';
10+
import AuthTroubleshooting from '../_partials/_auth-troubleshooting.mdx';
1111

1212
This guide shows you how to secure your MCP servers in Kubernetes using
1313
authentication and authorization with the ToolHive Operator.
@@ -28,7 +28,7 @@ You'll need:
2828

2929
- Kubernetes cluster with RBAC enabled
3030
- ToolHive Operator installed (see
31-
[Deploy the ToolHive Operator with Helm](./deploy-operator-helm.md))
31+
[Deploy the ToolHive Operator with Helm](./deploy-operator-helm.mdx))
3232
- `kubectl` access to your cluster
3333

3434
## Choose your authentication approach
@@ -370,11 +370,11 @@ kubectl logs -n toolhive-system -l app.kubernetes.io/name=weather-server-k8s
370370
## Related information
371371

372372
- For conceptual understanding, see
373-
[Authentication and authorization framework](../concepts/auth-framework.md)
373+
[Authentication and authorization framework](../concepts/auth-framework.mdx)
374374
- For detailed Cedar policy syntax, see
375-
[Cedar policies](../concepts/cedar-policies.md) and the
375+
[Cedar policies](../concepts/cedar-policies.mdx) and the
376376
[Cedar documentation](https://docs.cedarpolicy.com/)
377377
- For running MCP servers without authentication, see
378378
[Run MCP servers in Kubernetes](./run-mcp-k8s.mdx)
379379
- For ToolHive Operator installation, see
380-
[Deploy the ToolHive Operator with Helm](./deploy-operator-helm.md)
380+
[Deploy the ToolHive Operator with Helm](./deploy-operator-helm.mdx)

0 commit comments

Comments
 (0)