From 680074adf92885f3bd94a8583fa4a1182a89cdd5 Mon Sep 17 00:00:00 2001 From: "mintlify[bot]" <109931778+mintlify[bot]@users.noreply.github.com> Date: Wed, 1 Apr 2026 00:29:47 +0000 Subject: [PATCH 1/2] Add CLI telemetry documentation Generated-By: mintlify-agent --- installation.mdx | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/installation.mdx b/installation.mdx index 68eca503e..f3c5f7363 100644 --- a/installation.mdx +++ b/installation.mdx @@ -350,6 +350,29 @@ Display the current CLI and client version: mint version ``` +## Telemetry + +The CLI collects anonymous usage telemetry to help improve Mintlify. Telemetry data includes the command name, CLI version, operating system, and architecture. No personally identifiable information, project content, or file paths are collected. + +Telemetry is enabled by default. You can opt out at any time using the `--telemetry` flag: + +```bash +# Disable telemetry +mint --telemetry false + +# Re-enable telemetry +mint --telemetry true +``` + +You can also disable telemetry by setting one of these environment variables: + +| Variable | Value | Description | +| --- | --- | --- | +| `MINTLIFY_TELEMETRY_DISABLED` | `1` | Disable Mintlify CLI telemetry. | +| `DO_NOT_TRACK` | `1` | Disable telemetry using the [Console Do Not Track](https://consoledonottrack.com/) standard. | + +Your preference is saved in `~/.config/mintlify/config.json` and persists across CLI sessions. + ## Formatting While developing locally, we recommend using extensions in your IDE to recognize and format MDX files. From 6687b84dbd7de9e9a582cf70a973693553a9651d Mon Sep 17 00:00:00 2001 From: Ethan Palm <56270045+ethanpalm@users.noreply.github.com> Date: Sat, 4 Apr 2026 18:26:12 -0700 Subject: [PATCH 2/2] Apply suggestions from code review Co-authored-by: Ethan Palm <56270045+ethanpalm@users.noreply.github.com> --- installation.mdx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/installation.mdx b/installation.mdx index f3c5f7363..87fbdfb5c 100644 --- a/installation.mdx +++ b/installation.mdx @@ -352,9 +352,9 @@ mint version ## Telemetry -The CLI collects anonymous usage telemetry to help improve Mintlify. Telemetry data includes the command name, CLI version, operating system, and architecture. No personally identifiable information, project content, or file paths are collected. +The CLI collects anonymous usage telemetry to help improve Mintlify. Telemetry data includes the command name, CLI version, operating system, and architecture. Mintlify does **not** collect personally identifiable information, project content, or file paths. -Telemetry is enabled by default. You can opt out at any time using the `--telemetry` flag: +By default, the CLI collects telemetry data. You can opt out at any time by using the `--telemetry` flag: ```bash # Disable telemetry @@ -371,7 +371,7 @@ You can also disable telemetry by setting one of these environment variables: | `MINTLIFY_TELEMETRY_DISABLED` | `1` | Disable Mintlify CLI telemetry. | | `DO_NOT_TRACK` | `1` | Disable telemetry using the [Console Do Not Track](https://consoledonottrack.com/) standard. | -Your preference is saved in `~/.config/mintlify/config.json` and persists across CLI sessions. +Your preference saves in `~/.config/mintlify/config.json` and persists across CLI sessions. ## Formatting