Mintlify reference
Reference for building documentation with Mintlify. This file covers essentials that apply to every task. For detailed reference on specific topics, read the files listed in the reference index below.
Reference index
Read these files only when your task requires them. They are in the reference/ directory next to this file. To find them, look in the same directory as this skill file (e.g., .claude/skills/mintlify/reference/).
| File |
When to read |
reference/components.md |
Adding or modifying components (callouts, cards, steps, tabs, accordions, code groups, fields, frames, icons, tooltips, badges, trees, mermaid, panels, prompts, colors, tiles, updates, views). |
reference/configuration.md |
Changing docs.json settings (theme, colors, logo, fonts, appearance, navbar, footer, banner, redirects, SEO, integrations, API config). Also covers snippets, hidden pages, .mintignore, custom CSS/JS, and the complete frontmatter fields table. |
reference/navigation.md |
Modifying site navigation structure (groups, tabs, anchors, dropdowns, products, versions, languages, OpenAPI in nav). |
reference/api-docs.md |
Setting up API documentation (OpenAPI, AsyncAPI, MDX manual API pages, extensions, playground config). |
Before you start
Read the project's docs.json file first. It defines the site's navigation, theme, colors, and configuration.
Search for existing content before creating new pages. You may need to update an existing page, add a section, or link to existing content rather than duplicating.
Read 2-3 similar pages to match the site's voice, structure, and formatting.
File format
Mintlify uses MDX files (.mdx or .md) with YAML frontmatter.
project/
├── docs.json # Site configuration (required)
├── index.mdx
├── quickstart.mdx
├── guides/
│ └── example.mdx
├── openapi.yml # API specification (optional)
├── images/ # Static assets
│ └── example.png
└── snippets/ # Reusable components
└── component.jsx
File naming
- Match existing patterns in the directory
- If no existing files or mixed file naming patterns, use kebab-case:
getting-started.mdx
- Add new pages to
docs.json navigation or they won't appear in the sidebar
Internal links
- Use root-relative paths without file extensions:
/getting-started/quickstart
- Do not use relative paths (
../) or absolute URLs for internal pages
Images
Store images in an images/ directory. Reference with root-relative paths. All images require descriptive alt text.

Page frontmatter
Every page requires title in its frontmatter. Include description and keywords for SEO.
---
title: "Clear, descriptive title"
description: "Concise summary for SEO and navigation."
keywords: ["relevant", "search", "terms"]
---
Common frontmatter fields
| Field |
Type |
Required |
Description |
title |
string |
Yes |
Page title in navigation and browser tabs. |
description |
string |
No |
Brief description for SEO. Displays under the title. |
sidebarTitle |
string |
No |
Short title for sidebar navigation. |
icon |
string |
No |
Lucide, Font Awesome, or Tabler icon name. Also accepts a URL or file path. |
tag |
string |
No |
Label next to page title in sidebar (e.g., "NEW"). |
hidden |
boolean |
No |
Remove from sidebar. Page still accessible by URL. |
mode |
string |
No |
Page layout: default, wide, custom, frame, center. |
keywords |
array |
No |
Search terms for internal search and SEO. |
api |
string |
No |
API endpoint for interactive playground (e.g., "POST /users"). |
openapi |
string |
No |
OpenAPI endpoint reference (e.g., "GET /endpoint"). |
Quick component reference
Below are the most commonly used components. For full props and all 24 components, read reference/components.md.
Callouts
<Note>Supplementary information, safe to skip.</Note>
<Info>Helpful context such as permissions or prerequisites.</Info>
<Tip>Recommendations or best practices.</Tip>
<Warning>Potentially destructive actions or important caveats.</Warning>
<Check>Success confirmation or completed status.</Check>
<Danger>Critical warnings about data loss or breaking changes.</Danger>
Steps
<Steps>
<Step title="First step">
Instructions for step one.
</Step>
<Step title="Second step">
Instructions for step two.
</Step>
</Steps>
Tabs and code groups
<Tabs>
<Tab title="npm">
```bash
npm install package-name
```
</Tab>
<Tab title="yarn">
```bash
yarn add package-name
```
</Tab>
</Tabs>
<CodeGroup>
```javascript example.js
const greeting = "Hello, world!";
greeting = "Hello, world!"
Cards and columns
<Columns cols={2}>
<Card title="First card" icon="rocket" href="/quickstart">
Card description text.
</Card>
<Card title="Second card" icon="book" href="/guides">
Card description text.
</Card>
</Columns>
Use <Columns> to arrange cards (or other content) in a grid. cols accepts 1-4.
Accordions
<AccordionGroup>
<Accordion title="First section">Content one.</Accordion>
<Accordion title="Second section">Content two.</Accordion>
</AccordionGroup>
CLI commands
npm i -g mint — Install the Mintlify CLI.
mint dev — Local preview at localhost:3000.
mint broken-links — Check internal links.
mint a11y — Check for accessibility issues.
mint validate — Validate documentation builds.
mint upgrade — Upgrade from mint.json to docs.json.
Writing standards
- Second-person voice ("you").
- Active voice, direct language.
- Sentence case for headings ("Getting started", not "Getting Started").
- Sentence case for code block titles.
- All code blocks must have language tags.
- All images must have descriptive alt text.
- No marketing language, filler phrases, or emoji.
- Keep code examples simple, practical, and tested.
Common mistakes
- Missing language tag on a code block (use
```python, not ```).
- Using relative paths (
../page) instead of root-relative (/section/page).
- Forgetting to add new pages to
docs.json navigation.
- Images without alt text.
- Adding file extensions to internal links (
/page.mdx instead of /page).
Converted and distributed by TomeVault — claim your Tome and manage your conversions.
1---2name: mintlify-23description: Comprehensive reference for building Mintlify documentation sites. Use when creating pages, configuring docs.json, adding components, setting up navigation, or working with API references. Routes to detailed reference files for all components and configuration options. Use when this capability is needed.4---56# Mintlify reference78Reference for building documentation with Mintlify. This file covers essentials that apply to every task. For detailed reference on specific topics, read the files listed in the reference index below.910## Reference index1112Read these files **only when your task requires them**. They are in the `reference/` directory next to this file. To find them, look in the same directory as this skill file (e.g., `.claude/skills/mintlify/reference/`).1314| File | When to read |15|------|-------------|16| `reference/components.md` | Adding or modifying components (callouts, cards, steps, tabs, accordions, code groups, fields, frames, icons, tooltips, badges, trees, mermaid, panels, prompts, colors, tiles, updates, views). |17| `reference/configuration.md` | Changing docs.json settings (theme, colors, logo, fonts, appearance, navbar, footer, banner, redirects, SEO, integrations, API config). Also covers snippets, hidden pages, .mintignore, custom CSS/JS, and the complete frontmatter fields table. |18| `reference/navigation.md` | Modifying site navigation structure (groups, tabs, anchors, dropdowns, products, versions, languages, OpenAPI in nav). |19| `reference/api-docs.md` | Setting up API documentation (OpenAPI, AsyncAPI, MDX manual API pages, extensions, playground config). |2021## Before you start2223Read the project's `docs.json` file first. It defines the site's navigation, theme, colors, and configuration.2425Search for existing content before creating new pages. You may need to update an existing page, add a section, or link to existing content rather than duplicating.2627Read 2-3 similar pages to match the site's voice, structure, and formatting.2829## File format3031Mintlify uses MDX files (`.mdx` or `.md`) with YAML frontmatter.3233```34project/35├── docs.json # Site configuration (required)36├── index.mdx37├── quickstart.mdx38├── guides/39│ └── example.mdx40├── openapi.yml # API specification (optional)41├── images/ # Static assets42│ └── example.png43└── snippets/ # Reusable components44 └── component.jsx45```4647### File naming4849- Match existing patterns in the directory50- If no existing files or mixed file naming patterns, use kebab-case: `getting-started.mdx`51- Add new pages to `docs.json` navigation or they won't appear in the sidebar5253### Internal links5455- Use root-relative paths without file extensions: `/getting-started/quickstart`56- Do not use relative paths (`../`) or absolute URLs for internal pages5758### Images5960Store images in an `images/` directory. Reference with root-relative paths. All images require descriptive alt text.6162```mdx6364```6566## Page frontmatter6768Every page requires `title` in its frontmatter. Include `description` and `keywords` for SEO.6970```yaml71---72title: "Clear, descriptive title"73description: "Concise summary for SEO and navigation."74keywords: ["relevant", "search", "terms"]75---76```7778### Common frontmatter fields7980| Field | Type | Required | Description |81|-------|------|----------|-------------|82| `title` | string | Yes | Page title in navigation and browser tabs. |83| `description` | string | No | Brief description for SEO. Displays under the title. |84| `sidebarTitle` | string | No | Short title for sidebar navigation. |85| `icon` | string | No | Lucide, Font Awesome, or Tabler icon name. Also accepts a URL or file path. |86| `tag` | string | No | Label next to page title in sidebar (e.g., "NEW"). |87| `hidden` | boolean | No | Remove from sidebar. Page still accessible by URL. |88| `mode` | string | No | Page layout: `default`, `wide`, `custom`, `frame`, `center`. |89| `keywords` | array | No | Search terms for internal search and SEO. |90| `api` | string | No | API endpoint for interactive playground (e.g., `"POST /users"`). |91| `openapi` | string | No | OpenAPI endpoint reference (e.g., `"GET /endpoint"`). |9293## Quick component reference9495Below are the most commonly used components. For full props and all 24 components, read `reference/components.md`.9697### Callouts9899```mdx100<Note>Supplementary information, safe to skip.</Note>101<Info>Helpful context such as permissions or prerequisites.</Info>102<Tip>Recommendations or best practices.</Tip>103<Warning>Potentially destructive actions or important caveats.</Warning>104<Check>Success confirmation or completed status.</Check>105<Danger>Critical warnings about data loss or breaking changes.</Danger>106```107108### Steps109110```mdx111<Steps>112 <Step title="First step">113 Instructions for step one.114 </Step>115 <Step title="Second step">116 Instructions for step two.117 </Step>118</Steps>119```120121### Tabs and code groups122123```mdx124<Tabs>125 <Tab title="npm">126 ```bash127 npm install package-name128 ```129 </Tab>130 <Tab title="yarn">131 ```bash132 yarn add package-name133 ```134 </Tab>135</Tabs>136```137138```mdx139<CodeGroup>140141```javascript example.js142const greeting = "Hello, world!";143```144145```python example.py146greeting = "Hello, world!"147```148149</CodeGroup>150```151152### Cards and columns153154```mdx155<Columns cols={2}>156 <Card title="First card" icon="rocket" href="/quickstart">157 Card description text.158 </Card>159 <Card title="Second card" icon="book" href="/guides">160 Card description text.161 </Card>162</Columns>163```164165Use `<Columns>` to arrange cards (or other content) in a grid. `cols` accepts 1-4.166167### Accordions168169```mdx170<AccordionGroup>171 <Accordion title="First section">Content one.</Accordion>172 <Accordion title="Second section">Content two.</Accordion>173</AccordionGroup>174```175176## CLI commands177178- `npm i -g mint` — Install the Mintlify CLI.179- `mint dev` — Local preview at localhost:3000.180- `mint broken-links` — Check internal links.181- `mint a11y` — Check for accessibility issues.182- `mint validate` — Validate documentation builds.183- `mint upgrade` — Upgrade from `mint.json` to `docs.json`.184185## Writing standards186187- Second-person voice ("you").188- Active voice, direct language.189- Sentence case for headings ("Getting started", not "Getting Started").190- Sentence case for code block titles.191- All code blocks must have language tags.192- All images must have descriptive alt text.193- No marketing language, filler phrases, or emoji.194- Keep code examples simple, practical, and tested.195196## Common mistakes197198- Missing language tag on a code block (use ` ```python `, not ` ``` `).199- Using relative paths (`../page`) instead of root-relative (`/section/page`).200- Forgetting to add new pages to `docs.json` navigation.201- Images without alt text.202- Adding file extensions to internal links (`/page.mdx` instead of `/page`).203204---205> Converted and distributed by [TomeVault](https://tomevault.io/claim/mintlify) — claim your Tome and manage your conversions.206<!-- tomevault:4.0:skill_md:2026-04-11 -->