Iaptic MCP Server

Official

event_list

List recent events from your Iaptic account.

  • Returns a paginated list of system events
  • Events include:
    • Receipt validations
    • Platform notifications (Apple/Google/etc)
    • Webhook deliveries
    • Purchase status changes
    • Subscription renewals
  • Use limit and offset for pagination
  • Results ordered by date (newest first)

Input Schema

NameRequiredDescriptionDefault
enddateNoFilter events before this date (ISO format, e.g. 2024-12-31)
limitNoMaximum number of events to return (default: 100)
offsetNoNumber of events to skip for pagination
startdateNoFilter events after this date (ISO format, e.g. 2024-01-01)

Input Schema (JSON Schema)

{ "properties": { "enddate": { "description": "Filter events before this date (ISO format, e.g. 2024-12-31)", "type": "string" }, "limit": { "description": "Maximum number of events to return (default: 100)", "type": "number" }, "offset": { "description": "Number of events to skip for pagination", "type": "number" }, "startdate": { "description": "Filter events after this date (ISO format, e.g. 2024-01-01)", "type": "string" } }, "type": "object" }