Get a session replay summary
umami_get_replaySummarize any recorded session replay with pages visited, click count, and event breakdown instead of raw rrweb streams. Accepts a replay UUID and returns a readable markdown or structured JSON summary.
Instructions
Summarize one recorded session replay: pages visited, click count, and a duration/event breakdown.
This does not return the raw rrweb event stream (it can be tens of thousands of events); it summarizes it. Get replay IDs from umami_list_replays with response_format='json'.
Args:
website (string, optional): Website ID, name, or domain.
replay_id (string, required): Replay UUID.
include_clicks (boolean): Include the raw click coordinates (default: false, capped at 200).
response_format ('markdown' | 'json'): Output format (default: 'markdown').
Returns: JSON shape: { "session_id": string, "pages": [ { "href": string, "at": string } ], "click_count": number, "clicks": [ { "x": number, "y": number, "pathname": string } ] | undefined }
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. | |
| replay_id | Yes | Replay UUID, from umami_list_replays. | |
| include_clicks | No | Include raw click coordinates, capped at 200. | |
| response_format | No | Output format: 'markdown' for a readable summary, 'json' for raw structured data. | markdown |