iliad_analytics
ActiveTool of AXIS Toolbox — Agentic Commerce Codebase Intelligence
AXIS-owned product analytics. Two operations: `capture` (insert events) and `query` (aggregations). Capture accepts a single `event` or a batch via `events[]` (max 500). Query kinds: `count` (total events), `count_by_event` (top events by frequency), `distinct_users` (unique user_id count), `count_by_bucket` (time-series with minute/hour/day buckets). All queries support optional `event`, `from_ts`, `to_ts`, and `property_filter` filters. Namespaces are account-scoped server-side (`acct:<account_id>:<namespace>`). Persistent across restarts via SQLite. Requires Authorization: Bearer <api_key>. Best for funnels, cohorts, and retention on workloads up to ~1M events per account.
Parameters schema
{
"type": "object",
"required": [
"operation"
],
"properties": {
"event": {
"type": "object",
"description": "Single event payload {event, user_id?, properties?, timestamp?} — used in capture mode."
},
"query": {
"type": "object",
"description": "{kind, event?, from_ts?, to_ts?, property_filter?, bucket?, limit?} — used in query mode."
},
"events": {
"type": "array",
"description": "Batch of event payloads (max 500). Transactional — partial inserts never persist."
},
"namespace": {
"type": "string",
"description": "Logical isolation key. Defaults to 'default'. Account id is always prepended server-side."
},
"operation": {
"enum": [
"capture",
"query"
],
"type": "string",
"description": "capture or query."
}
}
}No endpoints wrapped at confidence ≥ 0.70.
Parent server
AXIS Toolbox — Agentic Commerce Codebase Intelligence
https://github.com/lastmanupinc-hub/Toolbox
1/7 registries