Install
$ agentstack add skill-adform-agentic-skills-adform-deal-health-check ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Adform deal health check
Retrieves deals attached to a campaign or advertiser, pulls recent delivery metrics, and surfaces deals with low or zero delivery alongside likely causes. Read-only.
Connection & tooling
Runs on the Adform GraphQL MCP. Use graphql_execute to run queries. Use graphql_search to look up field names. Keep calls sequential (~1–2s apart).
Step 1 — Find deals
Search deals by advertiser:
{
buyerDealListItems(
filters: [{ fieldName: "buyerDeal.searchPhrase", operation: contains, values: [""] }]
pagination: { offset: 0, limit: 50 }
) {
buyerDeals {
id dealId name type price currencyCode status startDate endDate
inventorySource { id name }
healthIndications { status }
deliveryIndications {
yesterday { transaction { bids winRate trackedAds clicks ctr ecpm } }
last7Days { transaction { bids winRate trackedAds clicks ctr ecpm } }
}
assignedToLineItemsCount
}
totalCount
}
}
Step 2 — Check past traffic per deal
{
inventoryMarketplaceDealPastTraffic(
deals: [{ inventoryId: 42, dealId: "12345" }]
) {
dealId
trafficCounts { cookies requests }
}
}
Step 3 — Deal group context (if applicable)
{ buyerDealGroup(id: "12345") { id name status dealIds } }
Step 4 — Confirm deal performance via mcpStats
After identifying deals with low delivery in Step 1, pull actual performance stats per deal ID from mcpStats to get CTR, eCPM, and win rate as reported metrics (rather than delivery indications). Validated query:
{
mcpStats {
totalRowCount
totals
columns {
dimensions { rtbDeal { id } }
metrics {
impressions
clicks
cost
ecpm
rtbBids
rtbWinRate
rtbMediaCost
}
}
rows(
filter: {
date: { from: "2026-06-01", to: "2026-06-30" }
advertiser: { ids: ["2133936"] }
}
paging: { offset: 0, limit: 50 }
sort: [{ column: 1, direction: desc }]
)
}
}
Cross-reference the rtbDeal.id values in the result against the deal IDs from Step 1. A deal present in Step 1 but absent from mcpStats rows (or with zero impressions after metric post-filtering) confirms zero delivery. Use rtbWinRate to distinguish a pricing problem (low win rate, non-zero bids) from a supply problem (zero bids).
Reading the results
For each deal, check:
deliveryIndications.yesterday.transaction.trackedAds— impressions yesterday; zero on an
active deal signals a problem
healthIndications.status— platform health flagdeliveryIndications.yesterday.transaction.winRate— low win rate alongside zero impressions
suggests pricing is below market; size a fix with adform-bid-landscape
assignedToLineItemsCount— a deal with zero assignments is not yet wired to any line item;
deliveryIndications and healthIndications will be null in this case
- Use Step 4 (mcpStats) to confirm zero delivery with actual reported metrics
rather than relying on delivery indications alone — the two sources together provide higher confidence in the diagnosis
Presenting
Lead with deals showing zero or near-zero delivery alongside their status and floor price. Then show a full table of all deals with impressions, win rate %, and eCPM. Note the likely cause for each flagged deal and a recommended next step — re-price via adform-bid-landscape, confirm wiring via adform-line-items, or check supply via adform-past-traffic.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: adform
- Source: adform/agentic-skills
- License: MIT
- Homepage: https://site.adform.com
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.