Back to tools

track_event

Track a custom platform event for orchestration and analytics.

Schema and Policy
{
  "name": "track_event",
  "description": "Track a custom platform event for orchestration and analytics.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "type": {
        "type": "string",
        "description": "Event type (e.g. tool_invocation, site_registration, error)"
      },
      "source": {
        "type": "string",
        "description": "Source of the event (e.g. site_id, user_id)"
      },
      "data": {
        "type": "object",
        "additionalProperties": true,
        "description": "Event payload"
      }
    },
    "required": [
      "type",
      "source",
      "data"
    ]
  },
  "category": "Analytics",
  "authRequired": true,
  "mutability": "write",
  "status": "auth_required"
}