get_audit_log
Review what an agent actually did against a Tally company via the append-only audit log; filter by date, company, tool, or writes-only to verify results or provide a record of every write.
Instructions
Read this connector's append-only audit log — every tool call made through it (read or write), with timestamp, arguments, outcome (success/error/denied), and a best-effort Tally company tag. Entries older than 90 days are permanently deleted (checked once per server startup, not kept indefinitely) — this is not a full historical record beyond that window. Use this to review what an agent actually did against this Tally company, e.g. before trusting a session's claimed results, or to hand a reviewer a plain record of every write made in a given period.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max number of most-recent matching entries to return. Defaults to 50. | |
| format | No | 'json' (default) returns the raw matching entries. 'summary' returns a compact table with counts by outcome — meant to be handed to someone reviewing what changed, without them needing to parse JSON themselves. | |
| toDate | No | Inclusive end date, DD-MM-YYYY. | |
| company | No | Only return entries tagged with this exact Tally company name. Tagging is best-effort — a call made before this connector learned which company was open (via get_company_info, get_health_check, or set_company) is stored with no company and won't match any value here. | |
| fromDate | No | Inclusive start date, DD-MM-YYYY. Filters by when the call happened. | |
| toolFilter | No | Only return entries for this exact tool name. | |
| writesOnly | No | Only return write calls (skip reads) — for reviewing what actually changed. |