LiveRecoverVYG Developer Docs
MCPToolsCDP tools

List Event Types

The event-type catalog your brand can send and query

cdp_list_event_types

Returns the catalog of event types your brand can send and query — the vocabulary behind cdp_trends, cdp_funnel, and cdp_preview_audience. Built-in types (for example product_viewed, checkout_started, order_created) are platform-wide; custom types are only ever your brand's.

Read-only and scoped to your brand.

Parameters

This tool takes no parameters.

Returns

  • eventTypes — an array of { name, source, title, description, schema }, where:
    • source is built-in (platform-wide) or custom (your brand's).
    • schema summarizes the accepted event envelope as { $id, version, required, properties }, enough to build a valid payload.
  • scope — your brand's shop domain.
  • ingestedEventTypes — an array of { name, source, recentCount } for the types actually flowing: server-side Aurora types (e.g. order.placed, subscription.charged) carry a real recentCount; pixel types are listed with recentCount: null. Aurora types lead, busiest first.
  • recentWindow{ since, sinceDays }, the window the Aurora recentCounts were measured over. Omitted when the Aurora volume read is unavailable.
  • degraded{ aurora }, present only when the Aurora volume read browned out (the static eventTypes catalog and the pixel entries still return).

Example prompts

What event types can I query?
List the built-in events available for trends and funnels

Notes

  • Another brand's custom event types never appear.
  • Use the returned name values directly in cdp_trends (event_type) and when reasoning about the funnel stages.
  • Prefer ingestedEventTypes to pick a real event to trend — it surfaces the dot-named server-side types (with volume) that the static eventTypes catalog omits.

On this page