Get Umami website details
umami_get_websiteGet website configuration details and collected data date range to verify tracking coverage, preventing empty periods from being read as traffic drops.
Instructions
Get configuration details for one website plus the date range of data actually collected for it.
The date range matters: querying a period before tracking started returns zeros, which is easy to misread as a traffic collapse. Check this first when numbers look surprisingly empty.
Args:
website (string, optional): Website ID, name, or domain.
response_format ('markdown' | 'json'): Output format (default: 'markdown').
Returns: JSON shape: { "id": string, "name": string, "domain": string, "share_id": string | null, "created_at": string, "data_start": string | null, "data_end": string | null, "active_visitors": number }
Examples:
"When did we start tracking example.com?" -> website="example.com"
"Is anyone on the site right now?" -> website="example.com"
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| website | No | Website ID (UUID), name, or domain. Optional if UMAMI_DEFAULT_WEBSITE is set. Use umami_list_websites to discover values. | |
| response_format | No | Output format: 'markdown' for a readable summary, 'json' for raw structured data. | markdown |