The two channels
The visual surfaces that exist
Use cases
1. The daily read
- Intent — “How did last week go?”
- Tools —
get_daily_report(project_id)for the numbers, thenpreview_daily_insight(project_id, payload)for the narrative that goes with them.get_daily_insight_readinessfirst says whether there is anything worth saying. - What the reader gets — a
kpicard, and every figure carries the pull that produced it and how fresh it is.
2. Comparing channels
- Intent — “Compare spend efficiency across Meta, TikTok and GA4.”
- Tools —
get_daily_report(project_id, connectors=["meta-ads", "tiktok-ads", "google-analytics"]), or a governed question throughexplore_analyze_query. - The trap it avoids — CTR, CPA and ROAS are not additive. The semantic ratio views recompute them at the grain you asked for, so a cross-channel comparison is not a sum of ratios. See Agent Rules, rule 2.
3. Explaining a drop
- Intent — “Why did conversions fall on 14 July?”
- Tools —
get_daily_reportfor the shape of the dip,search_contextandget_context_hubfor what the business registered around that date. - The rule that holds — context events are offered as candidate context, never as causes. toorow records that a deployment and a drop share a date; it does not know that one produced the other.
4. Auditing what is connected
- Intent — “Show me every datastream and its mapping status.”
- Tools —
flows_list(project_id), thenflows_get(project_id, kind, id)for one definition.get_data_quality_reportsays which of the ten monitors is unhappy and where. - What the reader gets — the
connectorscard, and a repair named for each finding rather than a status code.
5. Keeping the analysis
- Intent — “Turn this into something I can send.”
- Tools —
render_analyze_resultfreezes each figure,compose_dossiercomposes them with the narrative into an immutable version, and a Share hands it out — requested by one person, confirmed by a second. - What the reader gets — a page that draws through the same runtime as the console, with each figure’s provenance beside it. See Renders, Dossiers and Sharing.
Next Steps & Cross-References
MCP Host Integration
Connect an MCP host and reach these tools.
Agent Tools Reference
The surface behind every call on this page.
Agent Rules
The five rules that keep an agent’s answers correct.
Renders, Dossiers and Sharing
How an answer becomes a document someone else can open.

