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:sourceisbuilt-in(platform-wide) orcustom(your brand's).schemasummarizes 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 realrecentCount;pixeltypes are listed withrecentCount: null. Aurora types lead, busiest first.recentWindow—{ since, sinceDays }, the window the AurorarecentCounts were measured over. Omitted when the Aurora volume read is unavailable.degraded—{ aurora }, present only when the Aurora volume read browned out (the staticeventTypescatalog and thepixelentries still return).
Example prompts
What event types can I query?List the built-in events available for trends and funnelsNotes
- Another brand's custom event types never appear.
- Use the returned
namevalues directly incdp_trends(event_type) and when reasoning about the funnel stages. - Prefer
ingestedEventTypesto pick a real event to trend — it surfaces the dot-named server-side types (with volume) that the staticeventTypescatalog omits.