Files
mintlify[bot] e2787cfd93 Apply brand tone and writing style fixes (#6893)
* docs: standardize documentation writing style

* docs: apply brand tone and style fixes

* docs: refine brand tone and writing style

* Revert changelog.mdx changes

The changelog is generated content and shouldn't be rewritten by the
brand tone and writing style pass.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>

* Update ai/model-context-protocol.mdx

* Update ai/model-context-protocol.mdx

---------

Co-authored-by: mintlify[bot] <109931778+mintlify[bot]@users.noreply.github.com>
Co-authored-by: Ethan Palm <56270045+ethanpalm@users.noreply.github.com>
Co-authored-by: Claude Opus 5 (1M context) <noreply@anthropic.com>
2026-08-07 16:56:42 -07:00

44 lines
1.2 KiB
Plaintext

---
title: "Plausible"
description: "Integrate Plausible Analytics with your Mintlify documentation for lightweight, privacy-respecting visitor tracking without cookies or consent banners."
keywords: ["Plausible Analytics", "privacy-respecting analytics", "self-hosted analytics", "domain configuration"]
boost: 3
---
Add your site's domain to `docs.json` to send analytics to Plausible.
<Info>
Do not include `https://` for the domain or server.
</Info>
<CodeGroup>
```json Analytics options in docs.json
"integrations": {
"plausible": {
"domain": "your-documentation-domain",
"server": "optional - your self-hosted Plausible server hostname"
}
}
```
```json Example
"integrations": {
"plausible": {
"domain": "docs.domain.com"
}
}
```
</CodeGroup>
## Configuration options
<ParamField path="domain" type="string" required>
Your documentation site's domain. For example, `docs.example.com`. Do not include `https://`.
</ParamField>
<ParamField path="server" type="string">
The hostname of your self-hosted Plausible instance. For example, `plausible.example.com`. Only required if you self-host Plausible. Omit this field to use `plausible.io`. Do not include `https://`.
</ParamField>