Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
42ba5b4
docs(index): document Mintlify Index
kyan-yang Aug 5, 2026
d918821
fix(navigation): move Index to sidebar
kyan-yang Aug 5, 2026
d4a0d3d
style(navigation): flatten Index sidebar nesting
kyan-yang Aug 5, 2026
0129c14
refactor(navigation): nest Index under Optimize
kyan-yang Aug 5, 2026
12860ae
refactor(navigation): split Index docs by content type
kyan-yang Aug 5, 2026
6d467a4
docs(index): remove benchmarks page from docs
kyan-yang Aug 5, 2026
6714742
docs(index): consolidate agent setup into single Connect page
kyan-yang Aug 5, 2026
8a7ddfe
refactor(navigation): rename Index overview page to overview.mdx
kyan-yang Aug 5, 2026
10f7abd
update MCP comparison table
ethanpalm Aug 5, 2026
9827f70
update MCP selection tip
ethanpalm Aug 5, 2026
4288e5a
rename overview.mdx to index.mdx
ethanpalm Aug 5, 2026
54638ba
remove unused redirects
ethanpalm Aug 5, 2026
7eb7f19
copyedit API introduction
ethanpalm Aug 5, 2026
a6a76ca
move endpoint pages to API group
ethanpalm Aug 5, 2026
f4ccabe
update docs.json for moved endpoint pages
ethanpalm Aug 5, 2026
cbf8156
update nav
ethanpalm Aug 5, 2026
eec9a0d
copy edit API intro
ethanpalm Aug 5, 2026
ef27257
update endpoint descriptions
ethanpalm Aug 5, 2026
b7cf774
fix broken links
ethanpalm Aug 5, 2026
1f7b2ae
update 400 response in API schema
ethanpalm Aug 5, 2026
632a4fe
clarify `publishedDate`
ethanpalm Aug 5, 2026
2be4113
clarify rate limits
ethanpalm Aug 5, 2026
6e034e1
add sidbarTitle
ethanpalm Aug 5, 2026
9337d95
copy edit Index overview page
ethanpalm Aug 5, 2026
dad0fc6
use `mint index` command for connecting
ethanpalm Aug 5, 2026
cbea0d8
copyedit mcp page
ethanpalm Aug 5, 2026
fce1cd4
💅 AI native page
ethanpalm Aug 5, 2026
b567289
remove changelog
ethanpalm Aug 5, 2026
cda4e9b
Update changelog.mdx
ethanpalm Aug 5, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions ai-native.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ Mintlify hosts `llms.txt` and `skill.md` files for your documentation. These ind

Your documentation site also hosts an MCP server that lets users connect your documentation directly to their AI tools for up-to-date information about your product directly where they want it.

For implementation questions that span multiple products or require web search, [Mintlify Index](/search-index) gives coding agents one MCP server and REST API for retrieving context from publisher-maintained documentation and the web.

Full-text search and semantic understanding help users and AI tools find relevant information quickly. Search understands user intent rather than just matching keywords. And if a user encounters a 404 error, your site suggests related pages to help them find what they're looking for. No configuration required.

## Enable AI features
Expand Down
18 changes: 10 additions & 8 deletions ai/mintlify-mcp.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,16 @@ Connect any MCP client like Claude, Claude Code, ChatGPT, or Cursor to the admin

The admin MCP is a hosted Mintlify service at `https://mcp.mintlify.com`. Every client connects to the same endpoint and authenticates with your Mintlify account.

### How the admin MCP differs from the search MCP

| | Admin MCP | Search MCP |
| :-- | :-- | :-- |
| **Audience** | Your team | Your end users |
| **Access** | Read, edit, restructure, save, create workflows, manage settings | Read and search published pages |
| **Endpoints** | Hosted by Mintlify, scoped to your project | `/mcp` on your site domain |
| **Output** | Content edits, navigation changes, pull requests, workflow runs | Search results and page content |
### How the admin MCP differs from other Mintlify MCP servers

| | Admin MCP | Search MCP | Index MCP |
| :-- | :-- | :-- | :-- |
| **Audience** | Your team | Your end users | All developers and agents |
| **Access** | Read, edit, restructure, save, create workflows, manage settings | Read and search one site's published pages | Read and search all Mintlify sites |
| **Endpoint** | `https://mcp.mintlify.com` | `/mcp` on your site domain | `https://index.mintlify.com` |
| **Output** | Content edits, navigation changes, pull requests, workflow runs | Search results and page content from your site | Search results and page content from all Mintlify sites |

See the [Mintlify Index MCP reference](/search-index/mcp) for its tool inputs and rate limits.

## Prerequisites

Expand Down
2 changes: 1 addition & 1 deletion ai/model-context-protocol.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
Your search MCP server exposes tools for AI applications to search and retrieve your content. Your users must connect your search MCP server to their tools.

<Tip>
Looking to let agents edit your content instead of read it? Use the [admin MCP server](/ai/mintlify-mcp) for an authenticated MCP server that exposes branching, page editing, navigation, and `docs.json` tools to trusted agents.
To let trusted agents edit your content, use the [admin MCP server](/ai/mintlify-mcp). To give coding agents one retrieval source across all Mintlify sites, use [Mintlify Index](/search-index).
</Tip>

### How MCP servers work
Expand Down Expand Up @@ -583,7 +583,7 @@

<PreviewButton href="https://vscode.dev/redirect/mcp/install?name=mintlify&config=%7B%22type%22%3A%22http%22%2C%22url%22%3A%22https%3A%2F%2Fmintlify.com%2Fdocs%2Fmcp%22%7D">Install in VS Code</PreviewButton>

To connect the Mintlify MCP server to VS Code, click the **Install in VS Code** button. Or to manually connect the MCP server, create a `.vscode/mcp.json` file and add:

Check warning on line 586 in ai/model-context-protocol.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

ai/model-context-protocol.mdx#L586

Use 'VSCode' instead of 'vscode'.

```json
{
Expand Down
27 changes: 18 additions & 9 deletions api/introduction.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@
---

<Info>
The REST API requires a [Pro or Enterprise plan](https://mintlify.com/pricing?ref=api).
The platform REST API requires a [Pro or Enterprise plan](https://mintlify.com/pricing?ref=api).

The [Mintlify Index REST API](/api/search-index/introduction) uses a separate API key and base URL.
</Info>

The Mintlify REST (Representational State Transfer) API enables you to programmatically interact with your documentation, trigger updates, embed AI-powered chat experiences, and export analytics data.
Expand Down Expand Up @@ -45,18 +47,19 @@

## Authentication

Generate API keys on the [API keys page](https://app.mintlify.com/settings/organization/api-keys) in your dashboard. Each API key belongs to an organizationyou can use keys across multiple deployments within the same organization.
Generate API keys on the [API keys page](https://app.mintlify.com/settings/organization/api-keys) in your dashboard. Admin and Index API keys belong to an organization-you can use the same keys across multiple deployments withing the same organization. Assistant API keys belong to the deployment where you create them.

You can create up to 10 API keys per hour per organization.

When you create a key, you can set it to expire in 7, 30, 60, or 90 days, or select **No expiration**. New keys default to 90 days. The API keys page shows an **Expires in …** badge for keys that expire within 7 days and an **Expired** badge for keys that have already expired. Expired keys stop working, so rotate or replace them before the expiration date.

Mintlify uses two types of API keys, each scoped to a different set of endpoints:
Mintlify uses three types of API keys, each scoped to a different set of endpoints:

| Key type | Prefix | Use for |
| ----------------- | ----------- | --------------------------------------------------------------------------------------- |
| Admin API key | `mint_` | Updates, agent jobs, and analytics exports. Server-side only. |
| Assistant API key | `mint_dsc_` | Assistant messages, documentation search, and page content. Proxy in production. |
| Key type | Prefix | Use for |
| ----------------- | ----------- | -------------------------------------------------------------------------------- |
| Admin API key | `mint_` | Updates, agent jobs, and analytics exports. Server-side only. |
| Assistant API key | `mint_dsc_` | Assistant messages, documentation search, and page content. Proxy in production. |
| Index API key | `mint_us_` | Index search, context assembly, and content retrieval. Server-side only. |

### Admin API key

Expand Down Expand Up @@ -102,20 +105,26 @@
Search documentation and page content requests do not consume credits. Assistant message requests use credits and can incur overages.
</Note>

### Index API key

Use an Index API key to authenticate requests to the [Mintlify Index](/search-index) REST API. Index API keys begin with the `mint_us_` prefix.

The Index API key is a server-side secret. Do not expose it in client-side code.

### Restrict keys by IP address

Optionally restrict an API key to a list of allowed IP addresses or CIDR ranges. When a key has an allowlist, requests from any other IP address return a `403` response. Both admin and assistant API keys support allowlists.
Optionally restrict an API key to a list of allowed IP addresses or CIDR ranges. When a key has an allowlist, requests from any other IP address return a `403` response. Admin, assistant, and Index API keys support allowlists.

Set the allowlist when you create a key on the [API keys page](https://app.mintlify.com/settings/organization/api-keys) in your dashboard. You set the allowlist for the lifetime of the key when you create it. To change the allowlist, you must create a new key. If you don't set an allowlist, the key accepts requests from any IP address.

Allowlist entries support:

Check warning on line 120 in api/introduction.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

api/introduction.mdx#L120

Use 'allowlists?' instead of 'Allowlist'.

- IPv4 and IPv6 addresses, for example `203.0.113.5` or `2001:db8::1`.
- CIDR ranges, for example `198.51.100.0/24` or `2001:db8::/48`.

You cannot use catch-all entries like `0.0.0.0/0` and `::/0`.

Use IP allowlists when a stable set of egress IPs call your API key. For example, a CI/CD runner, a static NAT gateway, or your backend server. Avoid allowlists for keys used from developer laptops or other environments with changing IPs.

Check warning on line 127 in api/introduction.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

api/introduction.mdx#L127

Spell out 'NAT', if it's unfamiliar to the audience.

### Restrict admin keys by scope

Expand All @@ -136,10 +145,10 @@

### Set an expiration date

Optionally set an expiration date on any API key at creation. After the expiration timestamp passes, requests using the key return a `403` response. Both admin and assistant API keys support expiration.
Optionally set an expiration date on any API key at creation. After the expiration timestamp passes, requests using the key return a `401` response. All API keys support expiration.

Set the expiration on the [API keys page](https://app.mintlify.com/settings/organization/api-keys) in your dashboard. You set the expiration for the lifetime of the key. To change it, you must create a new key. If you don't set an expiration, the key never expires.

The expiration must be a future ISO 8601 timestamp. Past or invalid timestamps return a `400` response at key creation. The expiration returns as `expiresAt` when you list keys, or `null` for keys with no expiration.

Use expirations for short-lived credentials, such as CI/CD tokens, external contractors, or one-off scripts. Rotate long-lived keys by creating a replacement, updating your integrations, and deleting the old key.

Check warning on line 154 in api/introduction.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

api/introduction.mdx#L154

Did you really mean 'expirations'?
7 changes: 7 additions & 0 deletions api/search-index/contents.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
title: "Get result contents"
sidebarTitle: "Contents"
description: "Retrieve content from Mintlify Index by result ID or result URL after searching."
keywords: ["Mintlify Index", "contents API", "result IDs", "URLs"]
openapi: "/index-openapi.json POST /v1/contents"
---
7 changes: 7 additions & 0 deletions api/search-index/context.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
title: "Build implementation context"
sidebarTitle: "Context"
description: "Assemble source-cited technical context within a token budget for an application or agent."
keywords: ["Mintlify Index", "context", "citations", "token budget"]
openapi: "/index-openapi.json POST /v1/context"
---
93 changes: 93 additions & 0 deletions api/search-index/introduction.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,93 @@
---
title: "Mintlify Index REST API"
sidebarTitle: "Overview"
description: "Use the Mintlify Index REST API to search documentation and the web, assemble source-cited context, and retrieve page contents for applications and agents."
keywords: ["Mintlify Index API", "REST API", "authentication", "API key"]
---

Use the Mintlify Index REST API to retrieve technical knowledge for applications and agents. The API supports three retrieval patterns:

- [`context`](/api/search-index/context) assembles source-cited content within a token budget.
- [`search`](/api/search-index/search) returns ranked documentation and web results.
- [`contents`](/api/search-index/contents) retrieves content for selected Mintlify result IDs or result URLs.

<Info>
The REST API requires an API key for your organization. The public [Index MCP server](/search-index/mcp) does not require an API key.
</Info>

## Base URL

Send REST API requests to:

```text
https://leaves.mintlify.com/api/universal-search/v1
```

Append an endpoint path to this base URL, for example `/context`, `/search`, or `/contents`.

## Authentication

Authenticate each request with an Index API key in the `Authorization` header:

```http
Authorization: Bearer mint_us_...
```

Index API keys begin with `mint_us_`.

<Steps>
<Step title="Create an Index API key">
Open the [API keys page](https://app.mintlify.com/settings/organization/api-keys) in your dashboard and create an Index API key.

If this key type is unavailable, your organization does not have access to the Index REST API.
</Step>
<Step title="Store the key securely">
Save the key in a server-side environment variable. Mintlify only displays the complete key when you first create it. Store it securely.

```bash
export MINTLIFY_INDEX_API_KEY="mint_us_..."
```

<Warning>
Do not expose an Index API key in client-side code or commit it to version control.
</Warning>
</Step>
<Step title="Build context">
Send your first request to the `context` endpoint:

```bash
curl -X POST "https://leaves.mintlify.com/api/universal-search/v1/context" \
-H "Authorization: Bearer $MINTLIFY_INDEX_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"query": "How should I configure caching in Next.js 16?",
"product": "Next.js",
"format": "txt",
"tokenBudget": 3000
}'
```

A successful response includes assembled context with source URLs, the number of results used, and the output token count.
</Step>
</Steps>

## Rate limits

REST API limits apply per Mintlify organization. All API keys in an organization share the same limit:

| Window | Limit |
| --- | ---: |
| Per second | 10 requests |
| Per day | 1,000 requests |

Requests exceeding either limit return `429 Too Many Requests`. Use exponential backoff before retrying.

Check warning on line 83 in api/search-index/introduction.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

api/search-index/introduction.mdx#L83

Did you really mean 'backoff'?

## Errors

| Status | Meaning |
| --- | --- |
| `400` | The request body is invalid. |
| `401` | The API key is missing or invalid, or the organization does not have Index REST API access. |
| `403` | The request IP is not allowed by the API key. |
| `429` | The organization exceeded a rate limit. |
| `500` | Index could not complete the request. |
7 changes: 7 additions & 0 deletions api/search-index/search.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
title: "Search technical knowledge"
sidebarTitle: "Search"
description: "Search Mintlify Index for ranked technical documentation and web results."
keywords: ["Mintlify Index", "search API", "technical documentation", "ranked results"]
openapi: "/index-openapi.json POST /v1/search"
---
11 changes: 11 additions & 0 deletions changelog.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,17 @@
noindex: true
---

<Update label="August 5, 2026" tags={["New releases"]} rss={{ title:"Introducing Mintlify Index" }}>

## Mintlify Index

[Mintlify Index](/search-index) gives coding agents one retrieval layer for publisher-maintained technical documentation and the web.

- **Public MCP server:** [Connect](/search-index/connect) coding agents without an API key. The `context` tool returns source-cited material for implementation tasks.
- **Access-controlled REST API:** Search ranked sources, assemble context within a token budget, and retrieve selected contents through separate API endpoints. Requires an Index API key.

</Update>

<Update label="July 31, 2026" tags={["New releases","Improvements","Bug fixes"]} rss={{ title:"Introducing the widget, updated analytics, and more" }}>

## Mintlify widget
Expand All @@ -25,7 +36,7 @@
- **Editor-first dashboard:** The editor is now the homepage of the Mintlify dashboard. Other pages, like activity, analytics, products, and settings, now open in a modal on top of it, and every page keeps its own URL.
- **Redesigned editor:** New navigation tree, top bar, and page design. Create files in **Home** and structure your navigation in **Publishing**.
- **Organization-level credits:** Credits are now shared at the organization level instead of per deployment, so every deployment on a plan draws from one shared balance. See [Credit pricing](/credits) for more information.
- **Editor performance:** Navigation validation, page lookups, and tab switches in the editor are now linear instead of quadratic, so large sites open and edit faster.

Check warning on line 39 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L39

Did you really mean 'lookups'?
- **Personalization moved to add-ons:** [Personalization](/create/personalization) settings are now available under add-ons in the dashboard and no longer require a custom base path.
- **Truncated pagination titles:** Long titles in next/previous footer links truncate so they no longer overflow.
- **Long filename handling:** Uploaded files with names over 255 characters now truncate.
Expand All @@ -50,13 +61,13 @@

## GraphQL and SDK references

- **GraphQL API reference pages:** Generate reference pages from a GraphQL SDL schema, with linked types and example queries, mutations, and responses. See [GraphQL setup](/api-playground/graphql-setup).

Check warning on line 64 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L64

Spell out 'SDL', if it's unfamiliar to the audience.
- **SDK reference generation:** Build SDK reference pages directly from the output of TypeDoc, DocFX, Javadoc, Sphinx, or phpDocumentor. See [SDK reference setup](/api-playground/sdk-reference-setup).

## Editor and collaboration

- **Review flow:** Request review on a draft, leave feedback, and approve or request changes before publishing. Reviews now support non-deploy branches.
- **More ways to collaborate:** Start [comment threads](/editor/comments) on an entire page, mention yourself to leave a reminder, and use keybaord shortcuts <kbd>Option</kbd> + <kbd>C</kbd> or <kbd>Option</kbd> + <kbd>S</kbd> to comment on or suggest changes to selected text.

Check warning on line 70 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L70

Did you really mean 'keybaord'?
- **Faster, more available editing:** The editor renders without waiting for the Git file tree and people without GitHub write access can use the editor.

## Automations, integrations, and Slack
Expand Down Expand Up @@ -112,8 +123,8 @@

- **Faster deployment queues:** Preview deployments can now run more builds concurrently to reduce queue times.
- **Resend member invitations:** Resend outstanding invitations to new organization members from the dashboard.
- **Better signup feedback:** Signup now reports subdomain availability and suggests an available subdomain when your first choice is taken.

Check warning on line 126 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L126

Use 'signup' instead of 'Signup'.

Check warning on line 126 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L126

In general, use active voice instead of passive voice ('is taken').
- **Skipped deployment statuses:** The dashboard now shows when a deployment update was skipped instead of leaving its status unclear.

Check warning on line 127 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L127

In general, use active voice instead of passive voice ('was skipped').
- **Trailing-slash SEO config:** New `seo.trailingSlash` option in [`docs.json`](/organize/settings-seo) enforces consistent trailing-slash URLs across your site.

## Automations and Slack agent
Expand All @@ -138,9 +149,9 @@
- Reduced assistant errors while a response is streaming.
- Assistant chat history now preserves response text when a response ends with a tool call.
- Mermaid diagram actions now show on hover as expected.
- Version switcher is scoped to the versions available in the current dropdown.

Check warning on line 152 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L152

In general, use active voice instead of passive voice ('is scoped').
- Navigation-level `public: false` settings are now respected in authentication metadata.
- Long chat-history messages are truncated instead of horizontally scrolling.

Check warning on line 154 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L154

In general, use active voice instead of passive voice ('are truncated').
- Static assets and favicons now send `X-Robots-Tag: noindex` to keep them out of search results.
- `BreadcrumbList` JSON-LD no longer emits empty list items.

Expand Down Expand Up @@ -210,14 +221,14 @@
## Assistant skills and support handoff

- **Assistant skills:** Add [skills](/assistant/skills) that the assistant loads on demand via a `loadSkill` tool call, so it can answer with your team's hand-written, opinionated guidance instead of relying on search results alone.
- **Assistant contact form:** The [assistant](/assistant) can now present an in-chat contact form to hand off to support or sales when a question can't be answered from your content.

Check warning on line 224 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L224

In general, use active voice instead of passive voice ('be answered').
- **Themed query categories in assistant analytics:** [Assistant analytics](/optimize/analytics) groups related questions into categories and shows thumbs-up/thumbs-down sentiment per category, so you can review frequent topics your users are asking about.
- **Hosted MCP submit feedback tool:** Agents connected to your [hosted search MCP server](/ai/model-context-protocol#mcp-tools) can now report issues back to your team, recorded as unhelpful feedback in your analytics dashboard.

## Enterprise security

- **Session IP allowlist:** Restrict dashboard sessions to allowed IP ranges as part of your [SSO and session security policy](/dashboard/sso).
- **SCIM user provisioning and deprovisioning:** Provision and deprovision users through SCIM, with automatic session revocation, machine-credential revocation, and audit-log events when a user is deactivated.

Check warning on line 231 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L231

In general, use active voice instead of passive voice ('is deactivated').

## Improvements

Expand All @@ -225,10 +236,10 @@
- **Hosted MCP admin connect page:** New admin connect page and hosted MCP auth settings in the dashboard under Settings.
- **`searchable` frontmatter field:** Set `searchable: false` on a [page](/organize/pages) to omit it from site search results.
- **`.md` routes for section pages:** Section landing and collection index pages now resolve at their `.md` route for AI/LLM tooling.
- **`@mintlify` PR bot on fork branches:** The `@mintlify` GitHub bot now pushes comment edits directly to fork branches when the Mintlify app is installed on the fork, and supports PRs opened against docs repos.

Check warning on line 239 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L239

In general, use active voice instead of passive voice ('is installed').
- **Publish concurrency safety in the editor:** The [editor](/editor) broadcasts when a publish starts so other clients block immediately, and the publish dropdown can be dismissed during loading. Publish failures now include a summary.

Check warning on line 240 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L240

In general, use active voice instead of passive voice ('be dismissed').
- **Resumable editor agent streams:** The [editor agent](/editor) reconnects to in-flight streams after a disconnect instead of restarting from scratch.
- **Slack agent resilience:** The [Slack agent](/agent/slack) recovers cleanly when a message is interrupted and no longer leaves loaders spinning; switch-deployment flows are hardened.

Check warning on line 242 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L242

In general, use active voice instead of passive voice ('is interrupted').

Check warning on line 242 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L242

In general, use active voice instead of passive voice ('are hardened').
- **SSO copy refresh:** The [SSO](/dashboard/sso) settings page has clearer sections and updated GitLab configuration instructions.
- **Usage activity CSV export:** [Export your usage activity log](/credits#export-usage-activity) to CSV from the Usage page for deeper analysis, reporting, or record-keeping.

Expand All @@ -241,45 +252,45 @@
- Editing a doc file's title in the editor no longer resets it to the default.
- Assistant category occurrence counts now respect the selected date range.
- Removed invalid `charset`, `canonical`, and `og:*` meta tags from rendered pages.
- Automation run rows on the [automations page](/automations) are clickable to their details page, and the weekly run comparison indicator was removed.

Check warning on line 255 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L255

In general, use active voice instead of passive voice ('was removed').
- Editor `docs.json` over 1 MB now falls back to the blob API so large configs load reliably.
- Force-pushes to a connected Git branch are now handled gracefully during editor sync.
- Self-hosted deployments correctly use the client URL as the preview base, and the self-host Lambda starts the self-hosted client.

</Update>

<Update label="June 26, 2026" tags={["New releases","Improvements","Bug fixes"]} rss={{ title:"Google Drive agent integration, multi-source git settings, new onboarding, and more" }}>

Check warning on line 262 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L262

Use 'Git' instead of 'git'.

## New releases

- **Google Drive agent integration:** The agent can now pull context from Google Drive alongside Slack, Notion, Linear, Jira, and other [agent integrations](/agent/integrations).
- **Multi-repository deployments:** Configure and reorder multiple Git sources for a deployment from the dashboard. See [multi-repo setup](/deploy/multi-repo).
- **Assistant page navigation:** The [AI assistant](/assistant) can navigate users directly to a relevant page as part of its answer.
- **Custom agent instructions in `llms.txt` and markdown:** Custom agent instructions are now included in [`llms.txt`, `llms-full.txt`](/ai/llmstxt), and per-page generated markdown.

Check warning on line 269 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L269

Use 'Markdown' instead of 'markdown'.

Check warning on line 269 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L269

Use 'Markdown' instead of 'markdown'.
- **Mintlify Slack app in the Slack Marketplace:** The [Mintlify Slack app](/agent/slack) is now publicly listed and installable from the Slack Marketplace.

## Improvements

- **Automation PR grouping:** When an [automation](/automations) run proposes new changes, it now checks whether they should be appended to an existing open docs PR rather than creating a new one, reducing duplicate PRs and review burden. Applies to Maintenance and Update from Code Changes automations.

Check warning on line 274 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L274

In general, use active voice instead of passive voice ('be appended').
- **Automation GitHub PR review experience:** Docs PRs created by [automations](/automations) now post a comment each time they're updated, explaining what changed and which code PRs were used as context. PR titles identify which automation created them, reviewers are auto-assigned based on who changed the relevant code, and follow-up runs update the PR summary in place.

Check warning on line 275 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L275

In general, use active voice instead of passive voice ('were used').
- **HTML alternate link for markdown pages:** Every page now exposes an HTML `<link rel="alternate">` pointing to its [markdown version](/ai/llmstxt), making it easier for AI tools and crawlers to discover the LLM-friendly content.

Check warning on line 276 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L276

Use 'Markdown' instead of 'markdown'.

Check warning on line 276 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L276

Use 'Markdown' instead of 'markdown'.
- **Real-time publish status in the editor:** The [editor](/editor) now shows publish actions as they happen so you can see exactly when a change goes live.
- **Switch organization moved:** The **Switch organization** menu option is now in the profile dropdown menu.
- **Cookie-consent gating for analytics:** Third-party analytics scripts (GA4, GTM, and others) are now blocked until a visitor accepts cookies, helping you meet privacy requirements.
- **SSO enforcement on the frontend:** The dashboard now honors backend 403s for [SSO-only orgs](/dashboard/sso) and routes verified-domain users through SSO during sign-in.

Check warning on line 280 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L280

Put a nonbreaking space between the number and the unit in '403s'.

Check warning on line 280 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L280

Did you really mean 'orgs'?
- **Search indexes section landing pages:** Section landing pages are now included in docs search results, and search indexes continue to build for sites that opt out of public indexing.
- **Assistant CSV export grouping:** The assistant analytics CSV now includes a `Conversation ID` column and groups rows by conversation.
- **MCP server identity and instructions:** The [Mintlify MCP server](/ai/mintlify-mcp) now advertises instructions on initialize, helping clients use it more effectively.
- **Changelog automation runs show integration tools:** Automation runs that produce changelog entries now display the integration tools that were used.

Check warning on line 284 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L284

In general, use active voice instead of passive voice ('were used').
- **PDF export reliability:** Large PDF exports are now batched and produce clearer error logs when something goes wrong.

## Bug fixes

- Subpath deployments now resolve `.well-known` links correctly.
- Publishing from the editor no longer duplicates near-identical blocks during three-way merges.
- Icon serialization in published pages is fixed.

Check warning on line 291 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L291

In general, use active voice instead of passive voice ('is fixed').
- Editor image uploads now retry if the request is rate limited.
- MCP responses now forward upstream status codes correctly, and nested JSX is reconstructed properly for MCP clients.

Check warning on line 293 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L293

In general, use active voice instead of passive voice ('is reconstructed').
- The editor sidebar no longer renders a top fade gradient, and draft rows no longer show stale orange status dots.
- Bold text inside headings renders with the correct weight.
- The products selector dropdown column is wider so long names fit.
Expand All @@ -290,19 +301,19 @@

## New releases

- **Workflows are now automations:** Introducing [automations](/automations). They have the same functionality as workflows, just a new name to better describe what they're helping you do.

Check warning on line 304 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L304

Use 'capability' or 'feature' instead of 'functionality'.
- **SSO enforcement and breakglass:** Org owners can enforce [SSO-only sign-in](/dashboard/sso) for members, configure verified domains, and manage breakglass emails from the dashboard for emergency access.

Check warning on line 305 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L305

Use 'org' instead of 'Org'.
- **Full PDF export for authenticated sites:** [Authenticated sites](/deploy/authentication-setup) can now generate full PDF exports, with auth cookies parsed so images and assets are included.
- **Self-hosted improvements:** Self-hosted deployments can now serve a public docs domain, write `sitemap.xml` to S3 during static export, and support static exports. Webhooks now work in self-host mode.
- **`mint analytics` command removed:** The command `mint analytics` is deprecated.

Check warning on line 308 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L308

In general, use active voice instead of passive voice ('is deprecated').

## Improvements

- **Editor view changes:** Open an automation run's changed pages directly in the [editor](/editor) from the run review UI or Slack. Changed pages are highlighted, and unlisted pages are openable from the branch diff.

Check warning on line 312 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L312

In general, use active voice instead of passive voice ('are highlighted').
- **Typing performance:** Fixed typing lag on long pages in the editor.
- **Mintlify bot reliability:** The `@mintlify` GitHub bot is now more reliable across multi-comment iterations and posts a direct "view changes" link.
- **Preview deployments:** Preview deployments now rebuild on push and are created from new webhook events for faster previews.

Check warning on line 315 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L315

In general, use active voice instead of passive voice ('are created').
- **Search modal redesign:** The search and assistant modal is redesigned with full keyboard and accessibility support and no flicker on open.

Check warning on line 316 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L316

In general, use active voice instead of passive voice ('is redesigned').
- **Mobile menu redesign:** The docs topbar mobile menu has a refreshed design.
- **Product dropdown menus:** Product dropdowns now support nested menus and divisions.
- **Luma wide mode:** `mode: "wide"` now affects content positioning in the Luma theme.
Expand All @@ -312,11 +323,11 @@

- Bold text inside headings now renders with the correct font weight.
- Search modal primary color now matches the configured theme.
- Authenticated MCP requests propagate upstream responses to clients, and the authed MCP config rate limit was raised.

Check warning on line 326 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L326

In general, use active voice instead of passive voice ('was raised').
- Failed React components in the dashboard now render an error boundary instead of crashing the page.
- Removed the copy button from command-line code blocks where it wasn't useful.
- Duplicate merged changes during Git sync are now de-duplicated.
- MCP OAuth routes are hidden when auth is disabled.

Check warning on line 330 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L330

In general, use active voice instead of passive voice ('are hidden').

Check warning on line 330 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L330

In general, use active voice instead of passive voice ('is disabled').
- Assistant captcha copy updated for clarity.
</Update>

Expand All @@ -328,9 +339,9 @@

## Editor improvements

- **Drafts and publishing flow:** Make changes in a draft, request review, and publish — all from the [web editor](/editor). Drafts autocommit as you work, and renaming or updating a draft updates the underlying pull request.

Check warning on line 342 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L342

Don't put a space before or after a dash.
- **Create non-`.mdx` files:** Add JSON, YAML, and other supported file types directly from the editor file tree.
- **Topbar redesign:** A cleaner editor topbar with reorganized controls.

Check warning on line 344 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L344

Use 'topbar' instead of 'Topbar'.
- **Faster initial load:** The editor's first file and navigation load is significantly faster, with prefetching for visible nav tree pages.
- **New link UX:** A redesigned inline link editor in the WYSIWYG view.
- **Folding and sticky headings:** Long pages support collapsible headings, and sticky headings are clickable to jump back up the page.
Expand All @@ -339,10 +350,10 @@

## Search and AI

- **Markdown in search results:** Search via MCP, the assistant, and the agent now returns markdown, giving AI clients better page context.

Check warning on line 353 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L353

Use 'Markdown' instead of 'markdown'.
- **Project-level noindex:** Site owners can hide an entire project from search engines.
- **Unversioned search:** Pages without a version are included in search results when `searchSettings.unversioned` is set, with breadcrumbs that show their version context.

Check warning on line 355 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L355

In general, use active voice instead of passive voice ('are included').

Check warning on line 355 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L355

In general, use active voice instead of passive voice ('is set').
- **Claude Code classification:** Analytics now recognize Claude Code user agents and count AI agent HTML pageviews alongside markdown views.

Check warning on line 356 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L356

Use 'Markdown' instead of 'markdown'.

## Bug fixes

Expand All @@ -351,7 +362,7 @@
- Click-to-reposition the cursor in the editor file tree rename input.
- Adding files to `docs.json` in the editor no longer requires a reset.
- Image renames in the editor now work.
- The active page node is revealed in the editor navigation on load.

Check warning on line 365 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L365

In general, use active voice instead of passive voice ('is revealed').
- Search results anchor to the page top or title-matching section instead of arbitrary subsections.
- Bad frontmatter no longer crashes page builds.
- Automations home banner shows a toast when a custom automation delete fails, and prefers an error message over a summary for failed runs.
Expand All @@ -377,7 +388,7 @@

## Search

- **Better ranking:** In-product search now supports prefix matching, title-match promotion, and unicode tokenization, so partial queries and identifier searches surface the right pages faster.

Check warning on line 391 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L391

Use 'Unicode' instead of 'unicode'.
- **Word-prefix highlighting:** Matching word prefixes highlight in search results.

## Improvements
Expand All @@ -392,7 +403,7 @@
- Files in the editor file tree alphabetize after you create a new file.
- Accordions open automatically when you navigate to their hash anchor on the same page.
- The editor agent shows its overage and credit status before you send a message.
- Slack agent installs are rejected when the workspace is already owned by another organization, preventing cross-org conflicts.

Check warning on line 406 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L406

In general, use active voice instead of passive voice ('are rejected').
- Future date selection in the dashboard uses the correct styles.
</Update>

Expand All @@ -405,7 +416,7 @@
- **Page settings panel:** The new page settings panel lets you view and edit frontmatter in the file explorer view.
- **Hide branches toggle:** A new toggle hides branch indicators in the editor view for a cleaner workspace.
- **Better link editing:** Editing inline links is faster with an improved link editor experience.
- **Fullscreen table mode:** Edit large tables in a dedicated fullscreen view.

Check warning on line 419 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L419

Use 'fullscreen' instead of 'Fullscreen'.
- **Drag and drop Markdown:** You can now drag and drop Markdown files into the editor to upload them.
- **Brand icons in icon picker:** Brand icons are now available alongside the rest of the icon library.

Expand All @@ -419,7 +430,7 @@
## Automations

- **Draft improvements from user feedback:** This new automation reviews recent [page feedback](/optimize/feedback) and opens pull requests based on what users report.
- The **update from code changes** automation (formerly sync content with code) defaults to run on a schedule rather than triggering on every code change. When it runs, the agent scans all code changes since the last run and opens one PR per related set of documentation updates. If a PR is still open from a previous automation run, new changes are appended to it rather than creating a new PR. This means a release worked on over several weeks produces a single docs PR to review instead of one per commit.

Check warning on line 433 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L433

In general, use active voice instead of passive voice ('are appended').
- Automation titles and copy across the dashboard updated for clarity.

## API playground
Expand Down Expand Up @@ -451,11 +462,11 @@
## Bug fixes

- Custom heading IDs now preserve casing (camelCase, snake_case, kebab-case).
- Navigation breadcrumbs render above page-level hits in search results.

Check warning on line 465 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L465

Use 'preceding' instead of 'above'.
- Enum defaults pre-populate when you add new array items in the API playground.
- `.xml` files are now treated as valid link targets by the broken-links checker.
- Changelog pages now include an RSS feed discovery meta tag so readers can subscribe directly from the page.
- Bullet point behavior in the editor is fixed, including continuing and exiting lists.

Check warning on line 469 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L469

In general, use active voice instead of passive voice ('is fixed').
- Pasting copied web images no longer creates duplicate broken image nodes.
- Large editor media uploads now use direct-to-S3 presigned URLs, bypassing the previous 4.5 MB function payload limit.
- GitHub edit links now work correctly for `.md` pages.
Expand All @@ -463,12 +474,12 @@
</Update>

<Update label="May 22, 2026" tags={["New releases","Improvements"]} rss={{ title:"Web editor enhancements, new automation, search improvements, and more" }}>
## Web Editor

Check warning on line 477 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L477

'Web Editor' should use sentence-style capitalization.

We've continued to enhance our web editor with a number of functionality and UI improvements.

Check warning on line 479 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L479

Use 'capability' or 'feature' instead of 'functionality'.

- **More editable file types:** A broader set of file extensions can now be opened and edited directly in the web editor, while executable uploads are blocked for safety.

Check warning on line 481 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L481

In general, use active voice instead of passive voice ('be opened').

Check warning on line 481 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L481

In general, use active voice instead of passive voice ('are blocked').
- **Agent chat panel relocated:** The agent chat panel has been repolished and now sits to the left of the file explorer, making it easier to chat and navigate at the same time.

Check warning on line 482 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L482

In general, use active voice instead of passive voice ('been repolished').

Check warning on line 482 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L482

Did you really mean 'repolished'?
- **Editor settings:** A new settings panel and redesigned settings modal give you a single place to manage per-editor preferences. See [Web editor](https://www.mintlify.com/docs/editor).
- **File-tree navigation by default:** Newly onboarded users start in the file-tree view instead of the legacy list view.
- **Browser tab titling:** The browser tab name now dynamically updates to match the active file, so you always know which file you're editing.
Expand All @@ -476,7 +487,7 @@
## Automations

- New **Draft improvements from assistant conversations** automation reviews trends from user questions and suggests documentation updates to address gaps. See [Automations](/automations/reference#draft-improvements-from-assistant-conversations).
- **Context repositories** can now be configured directly for some automations so you can add the repos an automation should reference while running.

Check warning on line 490 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L490

In general, use active voice instead of passive voice ('be configured').
- Automation settings now open in a **side panel** instead of a modal, making it easier to tweak settings while reviewing Automation Runs.

## Search Improvements
Expand All @@ -493,19 +504,19 @@
- **API playground**: `any` and `undefined` types are now handled like `oneOf` schemas, letting users pick a concrete shape when sending a request.
</Update>

<Update label="May 15, 2026" tags={["New releases","Improvements"]} rss={{ title:"Web editor redesign, expanded agent support, billing improvements, and more" }}>

Check warning on line 507 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L507

'Web Editor' should use sentence-style capitalization.
## Web Editor

The [editor](https://www.mintlify.com/docs/editor) has been redesigned for live collaboration, parsing, and stability. Additional improvements include:

Check warning on line 510 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L510

In general, use active voice instead of passive voice ('been redesigned').

- **Agent panel**: Chat with the editor agent inline — attach files, view per-session diffs, leave feedback, and jump to the page the agent edited.

Check warning on line 512 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L512

Don't put a space before or after a dash.
- **Add to Assistant**: Send highlighted content straight to the [Assistant](https://www.mintlify.com/docs/assistant) from the editor toolbar.
- **File tree**: Create folders, create unlisted pages, and rename items in the file tree. Add unlisted Markdown into the navigation tree, and open unlisted Markdown and media files directly from the tree.

## Improvements

- **Automations**: New **Add GitHub repositories** link in the Automations repository dropdown makes it easier to connect additional repositories without leaving the page. The Automation Runs tab now defaults to **All runs** when nothing currently needs review, and a **View all runs** button on the empty state clears active filters in one click.
- **Mintlify Agent**: The [Mintlify agent](https://www.mintlify.com/docs/agent/slack) can now be installed in your Slack workspace even without having a Mintlify-hosted deployment. Additionally, viewer-role users can now ask questions and get answers using read-only tools, and the agent now uses prior thread images and message reactions as additional context.

Check warning on line 519 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L519

In general, use active voice instead of passive voice ('be installed').
- **Schema graph callbacks**: API reference pages now render OpenAPI `callbacks` in the schema graph.
- **Danish language support** added.

Expand All @@ -524,13 +535,13 @@
<Update label="May 8, 2026" tags={["New releases","Improvements"]} rss={{ title:"Expanded MCP access, assistant credit packages, AsyncAPI nested groups, and more" }}>
## Expanded MCP content access

Authenticated [MCP servers](/ai/model-context-protocol) now return more of your content to authorized users. Authenticated users can search public pages plus any pages they have permission to access based on their user groups, instead of being limited to public pages only. [Client credentials](/ai/model-context-protocol#client-credentials) return all public pages and authenticated pages that aren't restricted to specific groups.

Check warning on line 538 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L538

In general, use active voice instead of passive voice ('being limited').

The Mintlify MCP `list_nodes` tool now supports filtering by `parentId` (with optional `recursive` traversal), multiple node types, and additional division scopes including `dropdown`, `anchor`, `product`, and `item`. Results are paginated through an opaque cursor. See the [Mintlify MCP](/ai/mintlify-mcp) documentation for more details.

Check warning on line 540 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L540

In general, use active voice instead of passive voice ('are paginated').

## Assistant credit packages

The [assistant](/assistant) billing experience has been updated to use credit-based packages across all plans, with consistent terminology in the dashboard and usage controls. No changes to existing credit balances or usage.

Check warning on line 544 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L544

In general, use active voice instead of passive voice ('been updated').

## AsyncAPI nested groups

Expand Down Expand Up @@ -560,7 +571,7 @@

## Editor

The [editor](https://app.mintlify.com/editor) is redesigned for better collaboration and improved stability. The editor now supports real-time collaboration, automatic saving across devices, and improved syncing.

Check warning on line 574 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L574

In general, use active voice instead of passive voice ('is redesigned').

See the [editor](/editor) documentation for more details.

Expand Down Expand Up @@ -588,7 +599,7 @@

## Improvements

- Control whether OpenAPI-generated reference pages are included in your [Markdown export](/ai/llmstxt) and `llms-full.txt`

Check warning on line 602 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L602

In general, use active voice instead of passive voice ('are included').
- Search improvements: matched query terms highlighted in search results, search indexes content inside alt text, tag-based search filters are case-insensitive, and snippets no longer duplicate page titles.
- Banner components support more types and per-user dismissibility.
- Authenticated navigation now stays sticky while scrolling.
Expand All @@ -599,7 +610,7 @@

## Bug fixes

- Fixed copying of personalized code blocks so the rendered values are copied instead of the templated source.

Check warning on line 613 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L613

In general, use active voice instead of passive voice ('are copied').
- Fixed prefetching incorrectly attempting to fetch external links.
- Fixed prose styling for the [Tabs](/components/tabs) component.
- Fixed offset alignment for blocks placed inside a [Column](/components/columns).
Expand All @@ -611,20 +622,20 @@
- Fixed an automation card toggle that could blank the dashboard page.
</Update>

<Update label="April 24, 2026" tags={["New releases","Improvements"]} rss={{ title:"Preview Deployment API, Git onboarding redesign, web editor improvements, and more" }}>

Check warning on line 625 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L625

'Preview Deployment API' should use sentence-style capitalization.
## Preview Deployment API

A public API for generating preview deployments is now available. Use it to trigger previews from your own tooling—useful when your Git workflow doesn't map cleanly to standard branch-based preview triggers. See [Trigger preview deployment](/api/preview/trigger) for more details.

## Git onboarding and settings redesign

The Git settings page has been redesigned with a new layout. Mintlify-hosted customers migrating to their own GitHub or GitLab repository now get a step-by-step flow that walks through the full migration process.

Check warning on line 632 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L632

In general, use active voice instead of passive voice ('been redesigned').

## Web editor improvements

The web editor now shows the full Git diff for the current branch, including changes already pushed. Review everything modified in one place before publishing or opening a pull request.

Changes now persist locally, so edits made while offline are preserved and synced automatically when your connection returns.

Check warning on line 638 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L638

In general, use active voice instead of passive voice ('are preserved').

- **Emoji picker**: Type <kbd>:</kbd> to open an emoji picker and insert emojis inline.
- **Accordion reordering**: Drag and drop to rearrange accordions inside an [accordion group](/components/accordions) without editing MDX.
Expand All @@ -638,7 +649,7 @@
## Improvements

- Pages expose a `data-current-path` HTML attribute for easier custom scripting and analytics targeting.
- Hidden pages now respect the `seo.indexing: all` setting so you can still index specific pages that are excluded from navigation.

Check warning on line 652 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L652

In general, use active voice instead of passive voice ('are excluded').

## Bug fixes

Expand Down Expand Up @@ -679,17 +690,17 @@
- Pasting valid MDX components into the editor now preserves component structure instead of converting to plain text.
- Long sidebar navigation titles now hyphenate automatically to prevent overflow.
- The editor now resolves [`$ref` references](/organize/settings#split-configuration-with-%24ref) in split configuration files.
- The [Slack agent](/agent/slack) system prompt has been improved for more accurate and helpful responses.

Check warning on line 693 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L693

In general, use active voice instead of passive voice ('been improved').
- `llms.txt` now includes blockquote summaries for better page descriptions.
- Custom `skill.md` files in your repository are now detected correctly during deployment.

## Deprecations

- File-based automations are deprecated. Create automations from the dashboard instead. Existing automations from files continue to work, but new automations must be created in the dashboard.

Check warning on line 699 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L699

In general, use active voice instead of passive voice ('are deprecated').

Check warning on line 699 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L699

In general, use active voice instead of passive voice ('be created').

## Bug fixes

- Fixed instances of relative links in `index.mdx` files not resolving correctly.

Check warning on line 703 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L703

Use 'MDX' instead of 'mdx'.
- Fixed the copy button for code blocks in assistant responses.
- Fixed the table of contents not updating after page content changes.
- Fixed code block titles not displaying correctly.
Expand Down Expand Up @@ -719,11 +730,11 @@

## Multi-skill support

Serve multiple [skill files](/ai/skillmd) from a `.mintlify/skills/` directory. Each subdirectory with a `SKILL.md` file is discovered and served automatically, so you can organize skills by feature or domain.

Check warning on line 733 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L733

In general, use active voice instead of passive voice ('is discovered').

## Slack agent improvements

- **Multiple deployments**: Organizations with multiple documentation sites can now use the [Slack agent](/agent/slack) across all of them. The agent prompts you to choose a deployment on first use, and your preference is saved per Slack account.

Check warning on line 737 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L737

In general, use active voice instead of passive voice ('is saved').
- **Read-only mode**: The Slack agent now classifies messages and responds in read-only mode for questions that only need information retrieval, reserving write access for requests that require documentation changes.

## Client credentials for authenticated MCP
Expand All @@ -735,19 +746,19 @@
- The [`mint new`](/cli/commands#mint-new) command now supports creating projects from pre-defined templates with the `--template` flag.
- The CLI now auto-refreshes expired access tokens, so you no longer need to re-run `mint login` after a session expires.
- The [assistant](/assistant/index) is now available in `mint dev` local previews.
- CLI UX improvements: grayed-out login URLs for clarity, standardized log formatting, and `mint status` now shows the CLI version.

Check warning on line 749 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L749

Use 'unavailable' instead of 'grayed-out'.
- OpenAPI `x-group` extension support for organizing API endpoints into custom groups.
- Horizontal rules (`<hr />`) are now supported in MDX content.
- [Automations](/automations) now surface in the dashboard inbox for easier tracking. The automation list also displays PR names for quicker identification.
- The `mint export` command now includes API reference pages generated from OpenAPI specifications.
- The slash command menu in the editor has been redesigned with improved organization and discoverability.

Check warning on line 754 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L754

In general, use active voice instead of passive voice ('been redesigned').
- Improved the UI of the editor publish flow and page creation interface.
- Improved abuse prevention for the assistant.
- Added Finnish as a supported localization language.

## Bug fixes

- Fixed custom heading IDs not being processed before MDX parsing, which could cause anchors to break on certain pages.

Check warning on line 761 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L761

In general, use active voice instead of passive voice ('being processed').
- Fixed the SEO and metadata audit automation template from incorrectly modifying API endpoint pages.
- Fixed deprecated label text wrapping in the dashboard.
- Fixed inline formatting (bold, italic, code) not applying correctly in the editor in certain contexts.
Expand All @@ -758,7 +769,7 @@
- Fixed pages marked as hidden still appearing in the sitemap.
</Update>

<Update label="April 3, 2026" tags={["New releases","Improvements"]} rss={{ title:"get_page MCP tool, password-protected previews, SAML group role mappings, and more" }}>

Check warning on line 772 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L772

Did you really mean 'get_page'?

Check warning on line 772 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L772

'get_page MCP tool' should use sentence-style capitalization.
## get\_page MCP tool

[MCP servers](/ai/model-context-protocol) that Mintlify generates now include a `get_page` tool that lets AI agents fetch full page content by path. Agents can retrieve complete documentation pages for deeper context beyond search results.
Expand All @@ -775,8 +786,8 @@

- Redesigned the editor configuration settings page with an improved layout and autosave support.
- Pages auto-generated from OpenAPI specifications now appear in the web editor as read-only entries.
- Video support in [live preview](/editor/live-preview). Embedded mp4, webm, and mov files now render correctly during local development.

Check warning on line 789 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L789

Use 'WebM' instead of 'webm'.
- [Automations](/automations) can now be disabled and re-enabled from the dashboard.

Check warning on line 790 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L790

In general, use active voice instead of passive voice ('be disabled').
- Assistant analytics now show usage broken down by source (web vs API) in the dashboard.
- Authenticated MCP search now correctly filters results based on the user's authentication groups.
- Slack agent responses now show tool call summaries instead of raw tool calls for clearer information of what the agent is doing.
Expand Down Expand Up @@ -826,7 +837,7 @@

## API playground credentials

A new [`api.playground.credentials`](/api-playground/overview) option sends browser-managed credentials (like cookies and session tokens) with API playground requests when the proxy is disabled. Useful for APIs that use cookie-based authentication.

Check warning on line 840 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L840

In general, use active voice instead of passive voice ('is disabled').

## Improvements

Expand All @@ -851,7 +862,7 @@
- Fixed padding for tables inside tabs.
- Fixed Frame component hint icon vertical alignment.
- Fixed navigation item badge wrapping.
- Fixed API key being erased during prefill examples.

Check warning on line 865 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L865

In general, use active voice instead of passive voice ('being erased').
- Fixed linked code snippets in cards not being clickable.
</Update>

Expand Down Expand Up @@ -957,9 +968,9 @@

The assistant now also builds context from the page a user is on and indexes entire OpenAPI specifications.

## Default Vale configuration updates

Check warning on line 971 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L971

'Default Vale configuration updates' should use sentence-style capitalization.

The default [Vale configuration](/deploy/ci#configuration) now parses MDX as MD to avoid fragility with JSX. Previously, Vale returned false positive errors on any JSX inside of MDX components. Now, Vale parses MDX as MD to avoid these errors with tokenIgnores and blockIgnores for MDX and JSX elements that Vale should skip.

Check warning on line 973 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L973

Use 'md' instead of 'MD'.

Check warning on line 973 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L973

Use 'md' instead of 'MD'.

## Improvements

Expand Down Expand Up @@ -1026,7 +1037,7 @@

## Improvements

- New search functionality in the web editor makes it easier to find and navigate to files across your documentation.

Check warning on line 1040 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L1040

Use 'capability' or 'feature' instead of 'functionality'.
- Drag to add table rows and columns directly in the editor for faster table creation and modification.
- The API playground now supports audio response examples, making it easier to document audio-related API endpoints.

Expand Down Expand Up @@ -1055,7 +1066,7 @@

The [contextual menu](/ai/contextual-menu) now includes an option to add a copyable command to install your docs MCP server.

## `root` in groups

Check warning on line 1069 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L1069

'in groups' should use sentence-style capitalization.

Navigation groups now support a [`root`](/organize/navigation#root-page) property to set a landing page for the group. Clicking the group header navigates to the root page instead of expanding the group.

Expand Down Expand Up @@ -1147,7 +1158,7 @@
</Update>

<Update label="January 23, 2026" tags={["New releases","Improvements"]} rss={{ title:"skills.md, audit logs, and markdown export" }}>
## `skill.md` auto-generation

Check warning on line 1161 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L1161

'auto-generation' should use sentence-style capitalization.

Documentation sites now auto-generate a `skill.md` file based on your API references, guides, and features to give AI agents a comprehensive skills file with context on how to help people use your product. `skill.md` replaces the `install.md` approach with more structured capabilities and wider adoption. If you have a custom `skills.md` file at the root of your documentation repository, it replaces the auto-generated version. See [skill.md](/ai/skillmd) for more information.

Expand All @@ -1157,17 +1168,17 @@

## Markdown export for agents

Documentation pages now serve raw markdown when the `Accept: text/markdown` header is sent, which enables better AI agent consumption of content.

Check warning on line 1171 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L1171

Use 'Markdown' instead of 'markdown'.

Check warning on line 1171 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L1171

In general, use active voice instead of passive voice ('is sent').

## Improvements

- Combined authentication, partial authentication, and personalization into a single authentication experience. See [Authentication setup](/deploy/authentication-setup) for more information.
- Hidden pages now automatically receive `noindex` meta tags for better SEO control.
- Added markdown support for image captions.

Check warning on line 1177 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L1177

Use 'Markdown' instead of 'markdown'.
</Update>

<Update label="January 16, 2026" tags={["New releases","Improvements"]} rss={{ title:"install.md, live preview in the web editor, and more" }}>
## `install.md` auto-generation

Check warning on line 1181 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L1181

'auto-generation' should use sentence-style capitalization.

Documentation sites now auto-generate an `install.md` file that aggregates installation-related pages like quickstarts, getting started, installation, and setup guides for AI agents. If you have a custom `install.md` file in your documentation repository, it takes priority over the auto-generated version.

Expand All @@ -1178,7 +1189,7 @@

## Branch search for Git integrations

Added branch search functionality for GitHub and GitLab integrations so that it is easier to find and switch between deployment branches in the Git settings of your dashboard.

Check warning on line 1192 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L1192

Use 'capability' or 'feature' instead of 'functionality'.

## `mintlify validate` CLI command

Expand Down Expand Up @@ -1239,7 +1250,7 @@
You can now [customize your Slack bot](/ai/slack-bot) directly from the dashboard.

- **Choose a reply channel**: Select which channel the bot automatically replies to all messages in. The default is `#ask-ai`.
- **Customize the bot's appearance**: Change the bot's avatar and name from your dashboard.

Check warning on line 1253 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L1253

Did you really mean 'bot's'?

Check warning on line 1253 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L1253

Did you really mean 'bot's'?

## Mobile navigation improvements

Expand Down Expand Up @@ -1273,7 +1284,7 @@
- Updated [publishing workflow](/editor/branching-and-publishing) to support one-click publishing or creating pull requests.
- Working in the web editor no longer requires you to sign in with GitHub.

## Onboarding improvements

Check warning on line 1287 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L1287

'Onboarding improvements' should use sentence-style capitalization.

Check warning on line 1287 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L1287

Use 'onboarding' instead of 'Onboarding'.

- Choose between a Mintlify-hosted documentation repository or using your own repository while signing up.
- Create a documentation site without connecting a GitHub account.
Expand All @@ -1291,8 +1302,8 @@
<Update label="December 12, 2025" tags={["New releases","Improvements"]} rss={{ title:"Agent suggestions and Q&A bots" }}>
## Agent suggestions

The agent can now monitor Git repositories and suggest documentation updates. When user-facing code changes are detected, suggestions appear in the agent panel. Suggestions include the relevant pull request and a list of proposed documentation updates. Add suggestions as context for the agent to create pull requests or dismiss them.

Check warning on line 1305 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L1305

In general, use active voice instead of passive voice ('are detected').

Check warning on line 1306 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L1306

'Q&A bot in Slack' should use sentence-style capitalization.
## Q&A bot in Slack

Add a bot powered by the assistant to your [Slack workspaces](/ai/slack-bot). The bot answers questions in real-time based on your documentation, so it provides accurate, up-to-date answers to your community.
Expand All @@ -1307,7 +1318,7 @@

- **Insights** renamed to **Analytics** in the dashboard.
- Added ability to delete a deployment from the dashboard.
- The `Tooltip` component has been redesigned with improved styling and now supports an optional `headline` prop for adding a title to your tooltips.

Check warning on line 1321 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L1321

In general, use active voice instead of passive voice ('been redesigned').
- The `mint a11y` command now supports `--skip-contrast` and `--skip-alt-text` flags, allowing you to run specific accessibility checks in your CI/CD pipeline. Use `--skip-contrast` to check only for missing alt text, or `--skip-alt-text` to check only color contrast ratios.

## Bug fixes
Expand All @@ -1316,11 +1327,11 @@
- Fixed heading levels 5 and 6 rendering in the web editor.
- Fixed schema page examples display in API reference pages.
- Fixed image upload paths in monorepo setups.
- Fixed an issue where the incorrect request payload value was being selected first in the API playground.

Check warning on line 1330 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L1330

In general, use active voice instead of passive voice ('being selected').
- Removed file extensions from default image titles when uploading.
- Fixed double underline styling on banner links.
- Fixed loading states and date range values for analytics page.
- Folders in the web editor now properly maintain their open/closed state when other folders are opened or closed.

Check warning on line 1334 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L1334

In general, use active voice instead of passive voice ('are opened').
- Fixed long API page titles overflowing instead of wrapping.
</Update>

Expand All @@ -1340,7 +1351,7 @@

You can now display "last modified" timestamps on all pages in your documentation. Enable this feature by setting the [`timestamp`](/organize/settings-seo#metadata) flag in your `docs.json` settings.

When enabled, each page will automatically show when it was last updated, helping readers understand how current the content is.

Check warning on line 1354 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L1354

Avoid using 'will'.
</Update>

<Update label="December 5, 2025" tags={["Improvements"]} rss={{ title:"Weekly Updates",description:"API playground enhancements, web editor improvements, and bug fixes" }}>
Expand All @@ -1354,8 +1365,8 @@

## Assistant improvements

- Fixed assistant submission to prevent empty messages from being sent.

Check warning on line 1368 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L1368

In general, use active voice instead of passive voice ('being sent').
- Fixed accidental message submission during IME composition (for languages like Japanese, Chinese, Korean).

Check warning on line 1369 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L1369

Spell out 'IME', if it's unfamiliar to the audience.
- Better behavior when adding code snippets to assistant.

## Bug fixes and reliability
Expand All @@ -1363,7 +1374,7 @@
- Fixed handling of complex Mermaid diagrams.
- Fixed hash handling for URLs and table of contents to properly highlight the active page when accessing the root path with an index page.
- Added ability to disable 404 page recommendations via configuration.
- Fixed a bug in the API playground where boolean `false` and numeric `0` values in query parameters would be filtered out and not appear in the generated API request.

Check warning on line 1377 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L1377

In general, use active voice instead of passive voice ('be filtered').
</Update>

<Update label="December 3, 2025" tags={["New releases"]} rss={{ title:"Assistant query bucketing",description:"Automatically group similar assistant queries to identify common user questions" }}>
Expand All @@ -1377,7 +1388,7 @@
<Update label="December 1, 2025" tags={["New releases"]} rss={{ title:".mintignore support",description:"Exclude files and directories from your published documentation" }}>
## .mintignore support

- Added `.mintignore` file support to exclude specific files and directories from being processed and published to your documentation site.

Check warning on line 1391 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L1391

In general, use active voice instead of passive voice ('being processed').
- Uses the same pattern syntax as `.gitignore` for familiar configuration.
- Excluded files don't appear in published docs, aren't indexed for search, and aren't accessible to visitors.

Expand All @@ -1396,7 +1407,7 @@
- Fixed issue where response section would disappear when switching between endpoints with different response codes. The playground now properly resets to the first available response code when navigating to a new endpoint.
- Fixed double "Authorization" header display in HTTP Basic authentication schemes. The authentication section now shows a cleaner interface with proper field labels and descriptions.
- Improved handling of `oneOf` schemas in nested objects and arrays. Complex API schemas with multiple type options now render correctly as dropdowns instead of tabs in appropriate contexts.
- Fixed missing path parameters that were defined at the endpoint level in OpenAPI specs. Parameters specified above individual operations are now properly included in both the main page and playground.

Check warning on line 1410 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L1410

In general, use active voice instead of passive voice ('were defined').

Check warning on line 1410 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L1410

Use 'preceding' instead of 'above'.
- Enhanced response example generation to include all required properties, even when examples only specify some fields. This ensures response examples are complete and accurate.
- Fixed missing prefill examples in object arrays. Array items with example data now properly populate in the playground with correct indexing.
- Improved description padding and spacing throughout the API playground for better readability and visual consistency.
Expand All @@ -1407,7 +1418,7 @@

## CLI improvements

- Added error message for users running `mint dev` on Node.js versions below 20.17. Users are guided to upgrade to an LTS version.

Check warning on line 1421 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L1421

In general, use active voice instead of passive voice ('are guided').
</Update>

<Update label="November 15, 2025" tags={["New releases","Improvements"]} rss={{ title:"Weekly Updates",description:"Badge component, API playground improvements, custom language support, and performance enhancements" }}>
Expand All @@ -1425,14 +1436,14 @@
- Security inputs defined at the operation level in OpenAPI specs now properly override top-level security definitions
- Fixed issue where header inputs marked as security parameters were incorrectly included in generated code examples
- Improved handling of `deepObject` style parameters in API field displays
- Better error messages when invalid URLs are provided in API configurations

Check warning on line 1439 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L1439

In general, use active voice instead of passive voice ('are provided').
- Improved UI for API playground with better spacing, layout, and loading

## Navigation and UI enhancements

- Tab hover indicators now have improved styling for better visual feedback
- Long words now wrap properly to prevent horizontal scrolling
- Step component now handles cases where no step title is provided

Check warning on line 1446 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L1446

In general, use active voice instead of passive voice ('is provided').
- Logo section spacing improved with better padding
- Fixed heading IDs to properly handle question marks and special characters for anchor links
- Icon component now accepts `className` prop for custom styling
Expand All @@ -1447,7 +1458,7 @@

## Component and styling enhancements

- Images can now be zoomed with improved overlay styling for both light and dark modes

Check warning on line 1461 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L1461

In general, use active voice instead of passive voice ('be zoomed').
- Fixed keyboard shortcut styles inside callouts for dark mode
- Improved OG image generation with Google Fonts support and better truncation logic
- Improved UI for tables with better alignment, spacing, and readability
Expand All @@ -1473,14 +1484,14 @@
<Update label="October 31, 2025" tags={["Improvements"]} rss={{ title:"Weekly Updates",description:"API playground enhancements, table improvements, performance optimizations, and bug fixes" }}>
## Assistant improvements

- **Starter questions for assistant are here! You can add your own within the dashboard at [Assistant --\> Settings](https://app.mintlify.com/mintlify/mintlify/products/assistant/settings)**

Check warning on line 1487 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L1487

Don't use exclamation points in text.
- Assistant insights quality has been improved with default spam protection for abusive keywords and JSON queries.

Check warning on line 1488 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L1488

In general, use active voice instead of passive voice ('been improved').

## API playground improvements

- The API playground now automatically fills in default values for parameters, which saves time when testing endpoints.
- Issues with `allOf`, `oneOf`, and nested object schemas that previously caused rendering problems or incorrect field displays have been fixed, and complex API schemas now render correctly with all fields visible and properly structured.

Check warning on line 1493 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L1493

In general, use active voice instead of passive voice ('been fixed').
- Enum and nullable field types now display accurate labels in the playground, which makes it clearer what values are accepted and whether fields are optional.

Check warning on line 1494 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L1494

In general, use active voice instead of passive voice ('are accepted').
- When working with nested objects in API requests, the playground now shows proper descriptive labels for each field instead of generic placeholders, which makes it easier to understand what data to provide.
- Enum const tables and API field displays now render with improved formatting and alignment, which makes it easier to scan available options and understand field requirements.
- API playground modals now display rich MDX-formatted descriptions at the top, which gives better context for endpoints with formatted text, links, and code examples.
Expand All @@ -1488,7 +1499,7 @@
## Analytics changes

- Deferred analytics loading: PostHog and LogRocket now load after documentation content, which improves initial page load times and Core Web Vitals scores without affecting analytics data.
- Conditional session recording: PostHog session recording can now be enabled conditionally based on user properties or page context for more control over when recordings happen.

Check warning on line 1502 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L1502

In general, use active voice instead of passive voice ('be enabled').

## Visual improvements

Expand All @@ -1511,7 +1522,7 @@
## Insights improvements

- Improved insights page with fixed date selectors for "today" and "yesterday"
- Enhanced feedback table with improved search functionality

Check warning on line 1525 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L1525

Use 'capability' or 'feature' instead of 'functionality'.
- Added loading state for categories table

## Assistant improvements
Expand Down Expand Up @@ -1626,13 +1637,13 @@
## Bug fixes and reliability

- Fixed duplicate base paths and links in 404 recommended pages
- Auto-populated og:url tag with appropriate canonical URL

Check warning on line 1640 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L1640

Use 'URL' instead of 'url'.

Check warning on line 1640 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L1640

Use 'URL' instead of 'url'.
- Added canonical tag for better SEO
- Fixed code block overscroll issues
- Made search engines ignore preview deployments for SEO purposes
- Fixed referrer tracking to use domain instead of full URL
- Fixed images always becoming MDX block elements (kept inline images inline)
- Removed comments in raw markdown pages such that you can use TODO comments without them leaking to users

Check warning on line 1646 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L1646

Use 'Markdown' instead of 'markdown'.
- Fixed directory reading support for read\_external\_files

## Component and styling
Expand All @@ -1649,7 +1660,7 @@
- **Accessibility CLI command**: Run `mint a11y` to test your docs for accessibility issues
- **Video responses in API playground**: API playground now supports displaying video response types
- **API playground prefill**: New option to prefill API playground examples for faster testing
- **Unauthenticated feedback**: For sites using partial authentication, users can now submit feedback without being authenticated

Check warning on line 1663 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L1663

In general, use active voice instead of passive voice ('being authenticated').
- **Shiki theme support**: Shiki themes are now supported for code block styling
- **Twoslash for code blocks**: TypeScript and JavaScript code blocks now support Twoslash for inline type information

Expand Down Expand Up @@ -1688,7 +1699,7 @@

- Added support for Romanian and Czech languages in the documentation interface
- Enhanced localization capabilities with complete translation coverage for new languages
- Improved language selector functionality across all themes

Check warning on line 1702 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L1702

Use 'capability' or 'feature' instead of 'functionality'.

## UI and user experience improvements

Expand Down Expand Up @@ -1724,7 +1735,7 @@
- Fixed GitLab integration issues with larger repositories
- Improved dashboard loading performance with optimized deployment queries
- Fixed SVG path rendering issues in documentation
- Fixed keyboard navigation in search and chat functionality

Check warning on line 1738 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L1738

Use 'capability' or 'feature' instead of 'functionality'.
</Update>

<Update label="September 13, 2025" tags={["New releases","Improvements"]} rss={{ title:"Weekly Updates",description:"AI 404 suggestions, assistant web search with external sources, security enhancement, and reliability fixes" }}>
Expand All @@ -1747,7 +1758,7 @@
- Security enhancement added to editor such that only users with `write permissions` for the connected git hosting repository can make changes
- Fixed a bug where preview deployments wouldn't work for branches with `=` in the name
- Fixed a bug where long branch names would overflow modals on preview deployment creations
- Quality of life improvement where email query parameter will prefill the input on signup invitations

Check warning on line 1761 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L1761

Avoid using 'will'.
- Fixed a bug where copying a page from the context menu was not working on safari

## API playground and navigation
Expand All @@ -1758,7 +1769,7 @@
## SEO and UI

- Fixed a bug where favicons were not showing up in search engines by serving them from the same URL as the documentation site itself for each respective site
- Fixed a bug where youtube embeds would flash in and out on load

Check warning on line 1772 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L1772

Use 'YouTube' instead of 'youtube'.
- Fixed a bug where expanding the feedback menu to include written responses would cause layout shift with the table of contents
- Fixed a bug where text would leak above the topbar on the maple theme when a user dismissed the notification banner
- Enhanced the Maple and Willow themes by adding login/logout buttons to the sidebar for easier access
Expand Down Expand Up @@ -1789,16 +1800,16 @@
- Fixed a bug where Google was indexing raw `*.md` files because they were missing a `x-robots-tag noindex` header
- Fixed a bug with OAuth on protected docs where it wouldn't redirect you back to your starting page once you completed the flow successfully
- Fixed a bug on previews of auth protected docs where you weren't able to see the entire navigation bar
- Bug fixes to how SVGs are handled with our new image CDN

Check warning on line 1803 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L1803

In general, use active voice instead of passive voice ('are handled').

## Component and styling enhancements

- Added a new CSS selector for custom styles on `SidebarNavGroupDivider`
- New regression tests for MDX defined API pages that have security defined on them will ensure a greater degree of stability

Check warning on line 1808 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L1808

Avoid using 'will'.

## Performance improvements

- Performance improvement by moving the KaTeX CSS from cdnjs to our own CDN on Cloudfront for reduced latency

Check warning on line 1812 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L1812

Use 'CloudFront' instead of 'Cloudfront'.
</Update>

<Update label="August 23, 2025" tags={["Improvements"]} rss={{ title:"Weekly Updates",description:"Image layout fixes, auth enhancements, mobile nav improvements, and web editor stability" }}>
Expand All @@ -1810,13 +1821,13 @@
## Web editor and deployment enhancements

- Fixed branch creation workflow in web editor to correctly navigate to and stay on newly created branches
- Enhanced merge conflict dialog with proper escape functionality, no more page reloads required to dismiss conflicts

Check warning on line 1824 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L1824

Use 'capability' or 'feature' instead of 'functionality'.
- Optimized update workflow performance by cache-invalidating only changed pages during partial updates, reducing deployment times

## Authentication and navigation improvements

- New support for authentication on custom subpaths, if you serve docs at `https://yourdomain.com/docs`, authentication now works seamlessly
- Fixed sidebar display bug that incorrectly showed when only one link was configured

Check warning on line 1830 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L1830

In general, use active voice instead of passive voice ('was configured').
- Comprehensive mobile navigation overhaul: centered buttons with proper margin/padding, improved spacing in dropdown menus, removed unnecessary dividers and margins for empty sections, and fixed Maple theme gap/padding issues

## Component and styling fixes
Expand All @@ -1828,7 +1839,7 @@

- Enhanced logging system for update workflows enabling faster debugging and issue resolution
- Fixed GitHub rate limiting for customers with 10\+ OpenAPI/AsyncAPI specs by switching from individual file fetching to repository cloning
- Improved assistant reliability with backup LLM support, enhanced rate limit error handling, and more robust search tool functionality

Check warning on line 1842 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L1842

Use 'capability' or 'feature' instead of 'functionality'.
</Update>

<Update label="August 16, 2025" tags={["Improvements"]} rss={{ title:"Weekly Updates",description:"Performance optimizations, LLM integrations, web editor polish, and API playground enhancements" }}>
Expand All @@ -1846,7 +1857,7 @@
- Added Ruby support to API playground
- We added a feature such that you can now [specify API pages using just your docs.json](/api-playground/openapi-setup#auto-populate-api-pages) without creating any new mdx files.
- Support for [`webhook pages`](/api-playground/openapi-setup#webhooks) in docs navigation from OpenAPI specs
- Optimized AI model context by removing anchor link specifications from markdown links when navigating to Anthropic, OpenAI, or other providers

Check warning on line 1860 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L1860

Use 'Markdown' instead of 'markdown'.

## Web editor improvements

Expand Down Expand Up @@ -1890,8 +1901,8 @@
## Authentication improvements

- Group-level public access: make entire page groups public via `docs.json` so you don’t need `public: true` on each page ([learn more](https://mintlify.com/docs/authentication-personalization/authentication-setup#group-level))
- Support [`logoutURL in OAuth configuration`](https://mintlify.com/docs/authentication-personalization/authentication-setup#implementation-3) to delete upstream cookies and complete sign-out

Check warning on line 1904 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L1904

Use 'OG' instead of 'og'.
- On OAuth errors, users are redirected to your specified `logoutURL` to restart the auth flow

Check warning on line 1905 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L1905

In general, use active voice instead of passive voice ('are redirected').
- Fixed a flash of a 500 error during OAuth/JWT flows before the callback
- Auto-strip `https://` from URLs in OAuth/JWT auth configuration to prevent misconfiguration

Expand All @@ -1911,7 +1922,7 @@

- All image and video assets present in your docs repo are now served at the appropriate path on your domain. For example, if you have `/assets/marketing/my-logo.png` in your repo, it will be available at `https://mydocsurl.extension/assets/marketing/my-logo.png`.
- Email field on login for the Mintlify dashboard now autofocuses so you can start typing immediately _(quality of life improvement)_
- Both custom domains and subdomains in Redis for a performance improvement on navigation load times (~50ms latency reduction)

Check warning on line 1925 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L1925

Put a nonbreaking space between the number and the unit in '50ms'.
- Added retry logic for PDF exports to improve reliability
- Fixed cookie consent popup reappearing after acceptance or dismissal—first selection is now respected
- Fixed copying a page to clipboard on Safari by specifying a MIME `type` in `navigator.write`
Expand All @@ -1921,8 +1932,8 @@
- CLI bugfixes for windows and pnpm, plus CI tests to prevent regressions
- Improved error logging output—a quality of life upgrade for our engineering team when debugging
- Minor fixes to the broken-link CI action when `contentDirectory` files are missing
- Fixed a regression caused by the auth-protected preview fixes from last week where the active tab was not being set correctly in the navigation UI

Check warning on line 1935 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L1935

In general, use active voice instead of passive voice ('being set').
- Fixed theme light background color not being applied to active tab icons

Check warning on line 1936 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L1936

In general, use active voice instead of passive voice ('being applied').
- Fixed an issue where changing the auth type in the dashboard would update and then flip back to the previously saved type—now the new selection persists after saving
- Internal DX improvements for enterprise customers with custom UI libraries—it's now easier for us to include your components and accommodate requests on shorter timelines
</Update>
Expand All @@ -1937,7 +1948,7 @@

## API playground enhancements

- Fixed `multipart/form-data` file upload functionality in the API playground

Check warning on line 1951 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L1951

Use 'capability' or 'feature' instead of 'functionality'.
- Fixed anchor link behavior so clicking them updates the URL without scrolling to top of page
- Fixed anchor link issues in nested tabs

Expand All @@ -1952,7 +1963,7 @@

- Made search feel more crisp and accurate by aborting debounced requests as you type
- Resource provisions for a new CDN - expect image asset and page load times to improve soon
- Fixed bugs for rendering complex Mermaid diagrams like GANTT charts

Check warning on line 1966 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L1966

Spell out 'GANTT', if it's unfamiliar to the audience.

Check warning on line 1966 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L1966

Use 'Gantt' instead of 'GANTT'.
- Fixed CLI bugs on Windows to improve stability and added tests to prevent regression

## Technical improvements
Expand Down Expand Up @@ -2018,11 +2029,11 @@
Can now use `mint update` to update your CLI.
</Update>

<Update label="April 2025" tags={["New releases","Improvements"]}>

Check warning on line 2032 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L2032

'Web Editor 3.0' should use sentence-style capitalization.
## Web Editor 3.0

<Frame>
![Webeditor3 Jpe](/images/webeditor3.jpeg)

Check warning on line 2036 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L2036

Did you really mean 'Jpe'?
</Frame>

Overhauled usability in the WYSIWYG editor.
Expand All @@ -2039,13 +2050,13 @@

- Fixed top margin for changelog components
- Improved reliability of right click behavior
- After clicking publish, you’ll stay on the same page instead of being brought to an empty state

Check warning on line 2053 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L2053

In general, use active voice instead of passive voice ('being brought').
- Standardized colors in file icons
- Improved reliability after selecting new branches several times in a row
- Removed Diff mode
- More consistency when creating a new folder from the dropdown
- Fixed block quotes creating more block quotes when trying to deselect

Check warning on line 2059 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L2059

'AI Translations in beta' should use sentence-style capitalization.
## AI Translations in beta

<Frame>
Expand All @@ -2067,7 +2078,7 @@
## MCP server generator

<Frame>
![screenshot of MCP server generator](/images/changelog/mcpgenerator.png)

Check warning on line 2081 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L2081

Did you really mean 'ato'?
</Frame>

Generate MCP servers so that AI applications can interact with your docs or APIs. Written content is automatically generated as an MCP server, and you can generate an MCP server from your OpenAPI spec with one click. Check out [docs on getting started with MCP.](/ai/model-context-protocol)
Expand All @@ -2084,7 +2095,7 @@
- Fixed icon style inconsistency for anchors without container
- Improved styling nits for dashboard border for mobile-tablet-desktop responsiveness
- Show code examples even when in simple mode for API playground
- Support "command \+ k" shortcut for search in web editor

Check warning on line 2098 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L2098

Use 'codeblocks' instead of 'Codeblocks'.
- Codeblocks within callouts expand to fill the width of the callout area
</Update>

Expand Down Expand Up @@ -2112,7 +2123,7 @@
```

1. Delete your old `mint.json` file and push your changes

Check warning on line 2126 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L2126

'CI Checks' should use sentence-style capitalization.
## CI Checks

Automatically lint your docs to find broken links, discover spelling and grammar issues, or enforce writing styles with your own Vale config. Learn more in our [docs](deploy/ci).
Expand All @@ -2120,7 +2131,7 @@
## .md support for LLMs

All documentation pages are now automatically available as plain Markdown files—just append `.md` to the URL. This makes it easier for LLMs to ingest individual pages from your documentation.

Check warning on line 2134 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L2134

'More Themes' should use sentence-style capitalization.
## More Themes

<Frame>
Expand All @@ -2139,10 +2150,10 @@

- [Guide to Technical Writing:](https://mintlify.com/guides/introduction) Best practices for writing technical documentation, including audience research, content types, and writing tips.
- [Dropdown component](organize/navigation#dropdowns): Organize navigation with a dropdown, in addition to tabs and anchors.
- [AI syntax fixer](https://x.com/ricardonunez_io/status/1892334887644123192): The web editor will catch if there’s a parsing error and use AI to suggest fixes.

Check warning on line 2153 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L2153

Avoid using 'will'.
</Update>

<Update label="January 2025" tags={["Improvements"]}>

Check warning on line 2156 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L2156

'AI Assistant Improvements' should use sentence-style capitalization.
## AI Assistant Improvements

- New UI with dedicated chat page & pre-filled prompts
Expand All @@ -2153,7 +2164,7 @@
## Partial Authentication

Customize access to any page or section of content depending on user permissions. Supports connecting with your own authentication system.

Check warning on line 2167 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L2167

'Revamped API Playground' should use sentence-style capitalization.
## Revamped API Playground

We’ve overhauled the design and performance of the [API Playground](/api-playground/). Updates include:
Expand All @@ -2177,26 +2188,26 @@
Make docs private by setting up authentication via JWT, OAuth, or a universal password. With this privacy, you can create an internal knowledge base or prevent competitors from seeing your docs.
</Update>

<Update label="November 2024">

Check warning on line 2191 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L2191

'AI Writer' should use sentence-style capitalization.
## AI Writer

<Frame>
![AI Assistant](/images/changelog/ai-assistant.jpg)
</Frame>

You can now ask AI to make changes to your docs, with the context of all existing documentation. Type in a prompt and the writer will propose changes by generating a pull request.

Check warning on line 2198 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L2198

Avoid using 'will'.

Check warning on line 2199 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L2199

'GitLab Integration Upgrade' should use sentence-style capitalization.
## GitLab Integration Upgrade

We've improved our support for syncing with GitLab, such as enabling automated updates and preview deployments. Check out our [docs on GitLab](/deploy/gitlab) to get started.

Check warning on line 2203 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L2203

'Web Editor' should use sentence-style capitalization.
## Web Editor

<Frame>
![Web Editor](/images/changelog/webeditor.jpg)
</Frame>

We've revamped our web editor so that you can now update docs with a fully WYSIWYG experience, while syncing with markdown.

Check warning on line 2210 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L2210

Use 'Markdown' instead of 'markdown'.

Check out our [docs on getting started with Web Editor](/editor).

Expand All @@ -2210,7 +2221,7 @@

## Localization

You can now localize your docs which operates similarly to versioning. Add a `locale` to a version and fixed content in Mintlify like "Was this page helpful?" will also match the locale.

Check warning on line 2224 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L2224

Avoid using 'will'.

### Quality Improvements

Expand All @@ -2226,7 +2237,7 @@
<Frame>
![Changelog](/images/changelog/changelog.jpg)
</Frame>

Check warning on line 2240 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L2240

'Code Line Highlighting' should use sentence-style capitalization.
## Code Line Highlighting

You can now highlight lines of code in your docs to emphasize and bring attention to important parts by adding a special comment after the language identifier. Use curly braces `{}` and specify line numbers or ranges separated by commas.
Expand Down Expand Up @@ -2258,7 +2269,7 @@
"mode": "auto"
}
```

Check warning on line 2272 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L2272

'Advanced Footer' should use sentence-style capitalization.
## Advanced Footer

<Frame>
Expand All @@ -2269,8 +2280,8 @@

## Filter search based on the current user

When personalization is enabled, search results are now filtered based on the current logged in user so that they only see the relevant content.

Check warning on line 2283 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L2283

In general, use active voice instead of passive voice ('is enabled').

Check warning on line 2284 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L2284

'Custom Prompts for AI Chat' should use sentence-style capitalization.
## Custom Prompts for AI Chat

You can now customize the prompts for the AI chat. Please reach out to [support](mailto:support@mintlify.com) if you'd like to customize the prompts.
Expand All @@ -2282,15 +2293,15 @@
- Implemented the discovery login flow so that users that are members of multiple organizations can now switch between them.
- Added login with Google OAuth
- Added ability to add new deployment through dashboard settings.

Check warning on line 2296 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L2296

'Bug Fixes' should use sentence-style capitalization.
## Bug Fixes

- Can now use leading slashes in navigation.
- Can now edit CSS & JS files in the web editor.
- Fixed `suggestEdit` not showing up even when enabled.
- Fixed keyboard navigation for Search and Chat such that you can now use the up and down arrow keys to navigate the results.
- Don't allow search engines to crawl user-auth protected pages.

Check warning on line 2303 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L2303

Use 'revalidat(e|es|ed|ing|ion)?' instead of 'Revalidate'.
- Revalidate the cache when an org is deleted.

Check warning on line 2304 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L2304

In general, use active voice instead of passive voice ('is deleted').
- We now use the Scalar OpenAPI parser to parse OpenAPI definitions which improves the performance, fixes parsing issues, and surfaces better error messages.
- Top-level descriptions are now supported in API reference pages autogenerated from OpenAPI definitions.
- Add in-line-style support for icons
Expand All @@ -2299,7 +2310,7 @@
- Maintain scroll position when you click the back button in a browser.
</Update>

<Update label="September 2024">

Check warning on line 2313 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L2313

'Custom Fonts' should use sentence-style capitalization.
## Custom Fonts

<Frame>
Expand All @@ -2307,11 +2318,11 @@
</Frame>

Personalize the font of your docs to your own font hosted on a CDN or by choosing from Google fonts to match your docs with your brand.

Check warning on line 2321 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L2321

'Images in Card components' should use sentence-style capitalization.
## Images in Card components

Add an `img` property to a card to display an image on the top of the card. Learn more about it [here](/components/cards#image-cards).

Check warning on line 2325 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L2325

'Update Speed Performances' should use sentence-style capitalization.
## Update Speed Performances

<Frame>
Expand All @@ -2332,11 +2343,11 @@

- App router migration in the dashboard.
- Search analytics are now available in the dashboard.
- Delete an org functionality has been added to the dashboard.

Check warning on line 2346 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L2346

Use 'capability' or 'feature' instead of 'functionality'.

Check warning on line 2346 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L2346

In general, use active voice instead of passive voice ('been added').
- Shipped GitLab connection UI.
- Fix incorrect analytics data.
- Add-on's can now be directly purchased through the dashboard.

Check warning on line 2350 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L2350

'Bug Fixes' should use sentence-style capitalization.
## Bug Fixes

- Fixed a bug where the top bar would not stretch to the width of the screen when it's in custom mode and the sidebar layout is `sidenav`.
Expand All @@ -2344,15 +2355,15 @@

## More

- **Troubleshooting for API pages**: API pages could be complicated so we listed common issues to help you sort them out quickly — [Read the docs](/api-playground/troubleshooting)

Check warning on line 2358 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L2358

In general, use active voice instead of passive voice ('be complicated').

Check warning on line 2358 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L2358

Don't put a space before or after a dash.
</Update>

<Update label="August 2024">

Check warning on line 2361 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L2361

'OpenAPI Reference Pages' should use sentence-style capitalization.
## OpenAPI Reference Pages

- Endpoints defined by OpenAPI that are complex and recursive are now 98% smaller.
- We now show [additionalProperties](https://swagger.io/docs/specification/data-models/dictionaries/) in OpenAPI pages.

Check warning on line 2366 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L2366

'File Uploads in API Playground' should use sentence-style capitalization.
## File Uploads in API Playground

By default, API playground requests are proxied by Mintlify. Now you can use `disableProxy` to disable this behavior and support request types like file uploads.
Expand All @@ -2362,19 +2373,19 @@
## Mobile SEO improvements

We've fixed the mobile layout of our docs so that they are more SEO-friendly - including adding proper aria tags to elements.

Check warning on line 2376 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L2376

'Support Form' should use sentence-style capitalization.
## Support Form

We added a more detailed support form to the Mintlify dashboard. You can now submit a form to get in touch with us.

Check warning on line 2380 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L2380

'Bug Fixes' should use sentence-style capitalization.
## Bug Fixes

- Fixed a bug for the Segment integration functionality.

Check warning on line 2383 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L2383

Use 'capability' or 'feature' instead of 'functionality'.
- We now raise more granular error messages for GitHub permissions when interacting with the editor.
- Fixed bugs where the navigation would not properly expand when a direct link was used.

Check warning on line 2385 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L2385

In general, use active voice instead of passive voice ('was used').
</Update>

<Update label="July 2024">

Check warning on line 2388 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L2388

'AI Widget' should use sentence-style capitalization.
## AI Widget

<Frame>
Expand All @@ -2384,7 +2395,7 @@
We introduced Mintlify Widget, an extension of your docs to answer your users' questions when and where they asked. You can add this AI-powered chatbot to any web page: your landing page, inside your product, or on your existing documentation pages.

- [Read the blog announcement](https://mintlify.com/blog/widget)

Check warning on line 2398 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L2398

'API Playground Code Example Sync' should use sentence-style capitalization.
## API Playground Code Example Sync

When you browse API docs, the selected code example now syncs across your pages.
Expand All @@ -2394,7 +2405,7 @@
Currently in beta, this feature summarizes common user questions and patterns into easy-to-digest reports with AI-powered suggestions on how to improve your product.
</Update>

<Update label="June 2024">

Check warning on line 2408 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L2408

'Launch Week Highlights' should use sentence-style capitalization.
## Launch Week Highlights

- Themes: Customize your styling with pre-configured themes. Just add the theme Quill, Prism, or Venus to your `docs.json` file and it'll update your docs styling.
Expand All @@ -2407,8 +2418,8 @@
<Update label="May 2024">
## Okta SSO

We now support sign-on via Okta SAML and OIDC.

Check warning on line 2421 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L2421

Use 'single sign-on' instead of 'sign-on'.

Check warning on line 2422 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L2422

'Mintlify REST API' should use sentence-style capitalization.
## Mintlify REST API

Programmatically trigger updates to your documentation.
Expand Down Expand Up @@ -2441,11 +2452,11 @@
- CLI Error Detection: we now show the position of invalid frontmatter when there are parsing issues during local development
</Update>

<Update label="January 2024">

Check warning on line 2455 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L2455

'Launch Week Highlights' should use sentence-style capitalization.
## Launch Week Highlights

- Preview Deployments: When you create a pull request, we'll generate a unique link that shows a live preview of what your docs look like in prod. You can share this link with teammates.
- Snippets V2: We now support fully reusable components and variables for snippets.

Check warning on line 2459 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L2459

Use 'ARIA' instead of 'aria'.
- Open source MDX Engine: We've exposed two APIs—getCompiledMdx and MDXComponent—so you can access Mintlify markdown and code syntax highlighting. [Contributions to the project](https://github.com/mintlify/mdx) are welcome.

Check warning on line 2460 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

changelog.mdx#L2460

Use 'Markdown' instead of 'markdown'.
- AI Chat Insights: Segment chat history by date and increase AI Chat quota from the dashboard, and see how often a specific query appears.
</Update>
18 changes: 18 additions & 0 deletions docs.json
Original file line number Diff line number Diff line change
Expand Up @@ -248,6 +248,14 @@
"ai/skillmd",
"ai/model-context-protocol",
"optimize/search",
{
"group": "Mintlify Index",
"pages": [
"search-index/index",
"search-index/connect",
"search-index/mcp"
]
},
"optimize/seo",
"ai/markdown-export",
"optimize/pdf-exports",
Expand Down Expand Up @@ -350,6 +358,16 @@
"api/assistant/get-page-content"
]
},
{
"group": "Mintlify Index",
"icon": "library",
"pages": [
"api/search-index/introduction",
"api/search-index/context",
"api/search-index/search",
"api/search-index/contents"
]
},
{
"group": "Analytics",
"icon": "chart-line",
Expand Down
Loading