MCP Fathom Analytics

list-events

List all events for a Fathom Analytics site (automatically handles pagination)

Input Schema

NameRequiredDescriptionDefault
limitNoOptional limit on the number of events to return
site_idYesID of the site to retrieve events for

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "limit": { "description": "Optional limit on the number of events to return", "exclusiveMinimum": 0, "type": "number" }, "site_id": { "description": "ID of the site to retrieve events for", "type": "string" } }, "required": [ "site_id" ], "type": "object" }