Back to tools

dynamo_list_events

List platform events from DynamoDB — deployment notifications, content changes, audit entries. Supports filtering by event type and status. Essential for monitor.platphormnews.com dashboards.

Schema and Policy
{
  "name": "dynamo_list_events",
  "description": "List platform events from DynamoDB — deployment notifications, content changes, audit entries. Supports filtering by event type and status. Essential for monitor.platphormnews.com dashboards.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "type": {
        "type": "string"
      },
      "status": {
        "type": "string",
        "enum": [
          "pending",
          "delivered",
          "failed"
        ]
      },
      "limit": {
        "type": "number"
      }
    }
  },
  "category": "Analytics",
  "authRequired": false,
  "mutability": "read",
  "status": "active"
}