Install
$ agentstack add skill-adform-agentic-skills-adform-entity-browsing ✓ 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 entity browsing and ID resolution
Find, list, and resolve Adform entities — advertisers, campaigns, orders, line items — by name or ID. Browse the full hierarchy with delivery indications, or do quick name-to-ID lookups. Read-only.
Connection & tooling
Runs on the Adform GraphQL MCP. Use graphql_execute(query, variables) to run and graphql_validate to check a query first. Always validate before executing. The queries below are illustrative examples — if a field or input shape isn't shown, or a query fails validation, discover the current schema with graphql_search (lighter, preferred) and fall back to graphql_introspect one call at a time with ≥2s between calls for complex input types, enum values, or union/interface resolution.
1. Name-to-ID lookup
Convert an entity name to its numeric ID using agencyListItems with a search filter. Set the filter fieldName to the entity type and property you want to match.
{
agencyListItems(
filters: [{ fieldName: "advertiser.name", operation: eq, values: ["Acme Corp"] }]
) {
advertisers { id name }
}
}
Reverse lookup — ID to name:
{
agencyListItems(
filters: [{ fieldName: "campaign.id", operation: in, values: ["123456", "789012"] }]
) {
campaigns { id name }
}
}
2. Hierarchy browser — campaigns by advertiser
{
agencyListItems(
filters: [{ fieldName: "advertiser.id", operation: eq, values: ["71883"] }]
pagination: { limit: 20, offset: 0 }
) {
campaigns {
id name status
period { start end }
createdAt billingCode currencyCode type subType
}
}
}
3. Hierarchy browser — line items by order
{
agencyListItems(
filters: [{ fieldName: "order.id", operation: eq, values: ["456789"] }]
pagination: { limit: 20, offset: 0 }
) {
lineItems {
id name type status buyingType channelTypes
rtbSettings { environments buying { type price maxBidPrice } }
}
}
}
4. List advertisers
{
advertisers(
status: active
offset: 0
limit: 20
) {
advertisers { id name status type }
totalCount
}
}
5. Get advertiser detail
{
advertiser(id: "71883") {
id name status type
industryVerticalId timeZoneMappingId
trackingDomain netAmountCalcMethod
}
}
6. Get advertiser labels
{ advertiserLabels(id: "71883") { labelGroups { id name labels { id name } } } }
7. Get RTB domain settings
{ rtbDomains(id: "71883") { mode domains } }
Common patterns
- Name to ID:
agencyListItemswith asearchPhrasecontains filter for the entity level - Hierarchy drill-down: list advertisers → campaigns by advertiser → orders by campaign →
line items by order
- ID format: advertiser, campaign, order, and line item IDs are numeric strings
Presenting
Show entity name and ID, status, and relevant config fields. For hierarchy views, render as an indented tree or table. Always include the numeric ID so the trader can cross-reference in the Adform platform.
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.