This is a monorepo for hosting the content for the documentation of various projects in Auth0.
We use Mintlify for our documentation needs.
main: Main Documentation for Auth0: https://auth0.com/docs- Contains the primary Auth0 documentation content
- Includes
docs/,snippets/, andui/subdirectories
auth4genai: Documentation for Auth0 for AI Agents features in Auth0: https://auth0.com/ai/docs- Contains content for AI-specific Auth0 features
- Includes sections for quickstart guides, integrations, SDKs, MCP, and more
ui: Shared UI components and tooling- React/Vite-based component library used across documentation sites
Use the Mintlify CLI to preview and edit documentation locally.
- Node.js v19 or higher
Install the Mint CLI globally:
npm i -g mintOr using pnpm:
pnpm add -g mintNote for VPN Users
When running
mint devfor the first time, you'll need to disable your VPN to allow the framework to download. After the initial download completes, you can re-enable your VPN for subsequent runs.
-
Navigate to the documentation folder you want to work with (where the
docs.jsonfile is located):cd main # or cd auth4genai
-
Start the development server:
mint dev
-
Open your browser to
http://localhost:3000to view the local docs
- Update the CLI:
mint updateornpm i -g mint@latest - Find broken links:
mint broken-links - Check accessibility:
mint a11y - Custom port:
mint dev --port 3333
For more details, see the Mintlify CLI documentation.