Skip to main content
The Everflow MCP Server is in early access. Email support@everflow.io to request access for your network.
These examples show how an AI agent orchestrates multiple tools in sequence to answer questions that would otherwise require several API calls and manual correlation. Each example includes the prompt you’d send and what the agent does behind the scenes.

Diagnose a traffic drop

A partner reports that their click volume dropped sharply yesterday. You want to know whether it’s a tracking issue, a cap being hit, or a real traffic problem. Prompt:
“Affiliate 142 had significantly fewer clicks yesterday compared to the day before. Can you figure out what happened?”
What the agent does:
  1. Calls run_performance_report with dimensions=date,affiliate, filtered to affiliate 142, comparing yesterday vs. the prior day
  2. Calls get_affiliate with include=activity to check portal login recency and API usage
  3. Calls get_offer with include=caps for the affiliate’s top offer to check whether a daily click cap was hit
  4. Summarizes the findings: volume drop confirmed, cap exhausted at 14:32 UTC, suggests raising the cap or splitting traffic across offers

Partner health check

You want a quick health summary for your top 5 affiliates before a weekly review call. Prompt:
“Give me a health summary for my top 5 affiliates by revenue this month. Flag anyone with declining performance or low portal activity.”
What the agent does:
  1. Calls run_performance_report with dimensions=affiliate, date range = current month, sorted by revenue descending, page_size=5
  2. For each affiliate, calls get_affiliate with include=activity to fetch last login date, login frequency, and API call volume
  3. Calls run_performance_report again with the prior month for comparison
  4. Returns a table: affiliate name, this month’s revenue vs. last month, % change, last login date — flagging any with >20% revenue decline or no login in 14+ days

Investigate a disputed conversion

An advertiser disputes a conversion and claims the order was never placed. You need to trace the full event chain. Prompt:
“Advertiser says conversion conv_a1b2c3d4 is fraudulent. Can you pull the full picture?”
What the agent does:
  1. Calls get_conversion with conversion_id=conv_a1b2c3d4 — retrieves payout, affiliate, sub parameters, adv parameters, geo, device, order ID, and the originating transaction ID
  2. Calls get_click with the transaction ID from the conversion — retrieves the originating click: IP, device, referrer, timestamp, and whether it was flagged as unique
  3. Calls search_conversions filtered to the same affiliate and order ID to check for duplicate conversions on the same order
  4. Returns a consolidated timeline: click at 09:14 UTC from IP 203.x.x.x (US, Chrome/iOS), conversion fired 4 minutes later, no duplicate order IDs found, is_scrub is false — suggests legitimate attribution

Payout audit for a period

Finance needs to reconcile affiliate payouts for last month before processing invoices. Prompt:
“Summarize total payouts by affiliate for March 2026, and flag anyone whose payout exceeded $10,000.”
What the agent does:
  1. Calls run_performance_report with dimensions=affiliate, date range = March 2026, sorted by payout descending
  2. Filters the results client-side to flag affiliates where payout > 10000
  3. For each flagged affiliate, calls get_affiliate to retrieve their name, tier, and account manager
  4. Returns a ranked table with affiliate name, total payout, account manager, and a flag indicator — ready to paste into a finance report

Offer readiness check

You’re about to launch a new offer and want to verify that caps, targeting, and at least one affiliate are properly configured before going live. Prompt:
“Is offer 88 ready to launch? Check caps, targeting, and whether any affiliates are set up to run it.”
What the agent does:
  1. Calls get_offer with include=caps,targeting,affiliates for offer 88
  2. Checks: at least one payout event exists, global click cap is set, at least one country is targeted, at least one affiliate has visibility
  3. Calls get_affiliate on the first visible affiliate with include=activity to confirm they’re an active partner
  4. Returns a readiness checklist: payout configured ✓, targeting set to US/CA ✓, 3 affiliates visible ✓, primary affiliate last active 2 days ago ✓ — offer is ready to activate