Install
$ agentstack add skill-adform-agentic-skills-adform-viewability-audit ✓ 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 viewability settings audit
Reads the viewability capping configuration on campaigns and line items, compares it against the agreed standard, and flags deviations or line-level overrides. Read-only.
Connection & tooling
Runs on the Adform GraphQL MCP. Use graphql_execute to run queries. Use graphql_introspect on CampaignRtbSettings, RtbCappingSettings, and ViewabilitySettings to discover the current field shapes for viewability sub-objects. Keep calls sequential (~1–2s apart).
On this gateway, viewability is modelled as a capping setting — type and duration in milliseconds — on CampaignRtbSettings.capping[] and on RtbLineItem.impressionCappings[]. If your organisation tracks a viewability provider or percentage threshold separately, use graphql_search with the terms "viewability" and "provider" to discover where those fields live.
Step 1 — List campaigns
{
campaigns(
advertisers: "71883"
status: Active
offset: 0
limit: 20
) {
campaigns { id name status type subType advertiserId }
totalCount
}
}
Step 2 — Get viewability capping per campaign
{
campaignRtbSettings(id: "3993873") {
capping {
type
impressions
period { type duration }
viewability { type duration }
}
}
}
Step 3 — Spot-check line-level overrides
The id is the RTB setup ID returned by rtbLineItems(), not the placement ID.
{ rtbLineItem(id: "99999") { id impressionCappings { frequency { impressions } } } }
Use graphql_introspect on RtbLineItemCapping to discover viewability-related capping fields on individual line items.
Step 4 — Actual viewability metrics via mcpStats
Settings audit (Steps 1–3) confirms what viewability configuration is in place. Use mcpStats to pull the actual measured viewability numbers for the same advertiser and period, so the audit report can show both "what is configured" and "what was actually measured". Validated query:
{
mcpStats {
totalRowCount
totals
columns {
dimensions { campaign { id } }
metrics {
impressions
viewImpressionsIab
viewImpressionsPercentIAB
measurableImpressions
measurableImpressionsPercent
undeterminedImpressions
avgViewabilityTime
}
}
rows(
filter: {
date: { from: "2026-06-01", to: "2026-06-30" }
advertiser: { ids: ["2133936"] }
}
paging: { offset: 0, limit: 50 }
sort: [{ column: 0, direction: desc }]
)
}
}
Join the mcpStats result to the campaign list from Step 1 using campaign ID. A campaign with deviating viewability settings (flagged in Step 2) should also show a materially different viewImpressionsPercentIAB in mcpStats — use this to quantify the reporting impact of the misconfiguration.
Method
- Establish the baseline
typeandduration— from the brief, or the most common
configuration across campaigns as the de-facto standard
- For each campaign, read the viewability capping; flag any campaign whose type or duration
differs from the baseline, or that has no viewability capping where one is expected
- Spot-check line items for overrides that diverge from the campaign or baseline standard
Presenting
Consistency table: campaign, viewability type, duration (ms), and a settings verdict — MATCHES, DEVIATES, or NONE. Below the settings table, include a measured viewability table from mcpStats: campaign, impressions, viewable impressions (IAB), viewability rate %, measurable %, and avg viewability time.
Cross-reference the two tables: campaigns with deviating settings should be expected to show divergent measured rates — flag the delta as the business impact. Lead with deviations and missing measurement. Note any line-level overrides separately. Recommend aligning to the agreed standard.
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.