Documentation Index
Fetch the complete documentation index at: https://agenticadvertisingorg-changeset-release-main.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
S2: Creative mastery
Members only β Requires Practitioner credential. ~45 minutes with Addie. Combines hands-on lab and adaptive exam.
Specialisms this track prepares you to validate
The followingspecialisms fall under the creative domain. Each has its own compliance storyboard β see the Compliance Catalog for the full taxonomy.
| Specialism | Status | What it covers |
|---|---|---|
creative-ad-server | stable | Creative ad server with tag-based delivery |
creative-generative | stable | Generative creative agent producing assets on demand |
creative-template | stable | Creative template and transformation agent |
What youβll demonstrate
- Identify the three creative agent interaction models and explain when each applies
- Work with stateless agents (template/transformers): discover formats, preview with inline assets, build serving tags
- Work with stateful ad servers: browse a creative library, generate tags per media buy, track delivery
- Work with stateful sales agents: push creatives, preview in the publisherβs environment
- Adapt a single creative concept across multiple channels and formats
- Use
preview_creativein all three request modes β single, batch (5β10Γ faster for many creatives), and variant (retrieve historical renders fromget_creative_delivery) β and chooseoutput_format: "html"when bypassing the iframe speeds rendering - Understand creative agent pricing: the
pricing_options[]array on discovery responses, howpricing_option_idflows throughbuild_creativeandreport_usage, and why CPM ad servers show zerovendor_costat build time while transformation agents do not - Reason about tracker-slot presence β a format supports third-party measurement only if its
assetsarray declares a tracker slot (e.g.,impression_tracker). Broadcast formats intentionally omit tracker slots; measurement comes from panel and STB data viabilling_measurement - Attach
industry_identifiers[]to broadcast manifests with the correctcreative-identifier-type(ad_id,isci,clearcast_clock), and give each cut (:15vs:30) its own Ad-ID - Reason about format edge cases, accessibility, and provenance
Prerequisite reading
Core creative tasks
list_creative_formats
Format discovery: what specs does each publisher require?
build_creative
Creative generation and transformation from brand assets.
preview_creative
Preview creatives before deployment.
sync_creatives
Synchronize creative assets with publisher platforms.
Supporting concepts
Creative protocol overview
The creative protocol: assets, formats, manifests, and creative agents.
Creative specification
Formal specification for the creative protocol.
Formats reference
Format definitions, technical specs, and the renders structure.
Asset types
Images, video, audio, HTML5, and native asset specifications.
Creative manifests
Manifest structure: how creative packages describe their contents.
Channel guides
Channel-specific specs for video, display, audio, DOOH, and carousels.
Broadcast TV
Broadcast formats,
industry_identifiers[] (ad_id, isci, clearcast_clock), Ad-ID integration, and why broadcast formats omit tracker slots.Generative creative
AI-generated creative workflows and best practices.
Accessibility
Accessibility standards for advertising creatives.
Provenance
AI creative provenance and disclosure requirements.
Implementing creative agents
Architecture guide for building creative agents.
Creative governance
Creative governance
Feature-based creative evaluation: security scanning, regulatory compliance, and content categorization.
get_creative_features
The evaluation task that scores creatives against governance features.
Content standards
Buyer-defined content rules that constrain what creatives can contain.
Provenance verification
How governance agents verify AI creative provenance metadata.
Connecting to the test agent
Lab exercises run against the public test agent. Use the shared token β no signup required. The creative module spans three agent surfaces; start with the ad server (the most common path) and switch URLs when an exercise calls for a different agent type.| Agent surface | URL | Used in |
|---|---|---|
| Creative ad server | https://test-agent.adcontextprotocol.org/creative/mcp | Exercises 2, 4 |
| Stateless transformation / template agent | https://test-agent.adcontextprotocol.org/creative-builder/mcp | Exercises 1, 5 |
| Sales agent (push-and-preview) | https://test-agent.adcontextprotocol.org/sales/mcp | Exercise 3 |
Lab exercises
Interaction models
- Stateless transformation β Connect to a template agent, discover its formats, preview a template with sample brand assets (inline), and build a serving tag. No
sync_creativesβ everything is passed in the call. - Ad server workflow β Connect to a pre-loaded ad server, browse the creative library with
list_creatives, generate tags for multiple media buys usingbuild_creative, and check delivery metrics. - Push-and-preview β Connect to a sales agent, discover its accepted formats, push catalog assets with
sync_creatives, and preview how they render in the publisherβs environment.
Creative pricing
-
Pricing lifecycle β Using the same sandbox ad server from exercise 2:
- Establish an account with the ad server
list_creativeswithaccountandinclude_pricing: trueβ observepricing_optionson each creative reflecting your rate card- Switch to a second sandbox account,
list_creativesagain β observe thatpricing_optionsreflects a different rate (different CPM, model, or currency) build_creativewithaccountβ examinepricing_option_id,vendor_cost, andconsumptionin the responsebuild_creativewithoutaccountβ observe the rejection error- Call
report_usagewithcreative_id+pricing_option_id, verify the values match whatbuild_creativereturned - Explain: why is
vendor_costzero on a CPM-priced creative at build time?
-
Transformation agent pricing β Using the sandbox transformation agent from exercise 1, with pricing enabled:
- Establish an account with the transformation agent
list_creative_formatswithaccountandinclude_pricing: trueβ observepricing_optionson each format (per-unit pricing)build_creativewithaccountβ examinepricing_option_id,vendor_cost, andconsumption(expect non-zerovendor_costat build time, unlike the CPM ad server)- Compare: ad server discovers pricing on
list_creatives, transformation agent discovers pricing onlist_creative_formats. Ad server has zero build cost (CPM accrues at serve time), transformation agent has non-zero build cost (per-unit pricing)
Vendor pricing is consistent across protocolsAll vendor services use the same pattern:
pricing_options[] on discovery responses, pricing_option_id in report_usage. Signals, content standards, creative agents, and property list agents all follow this.Vendors often offer multiple pricing options per creative β volume/commitment tiers (lower CPM at higher spend), context-specific rates (premium vs. standard placements), or different pricing models for different product lines (CPM for rich media, per-unit for social variants). The buyer selects the appropriate pricing_option_id and passes it in report_usage.Cross-platform skills
- Format discovery β Query sandbox agents for supported formats, compare requirements across publishers
- Cross-platform adaptation β Adapt one concept across display, video, and native formats using
build_creativewithtarget_format_ids - Compliance β Configure provenance metadata and disclosure requirements for AI-generated creatives
- Preview modes β Run
preview_creativeasrequest_type: "single", then"batch"(submit 5 creatives in one call and measure the speedup), then"variant"against a priorget_creative_deliveryresult. Compareoutput_format: "url"vs"html"for rendering latency. - Tracker-slot audit β For each sandbox format, inspect the
assetsarray and determine whether it supports third-party measurement. Explain why assigning a DoubleVerify pixel to a broadcast spot wonβt work, and whichbilling_measurementvendor would instead. - Broadcast identifiers β Build a broadcast manifest with distinct
industry_identifiers[]for:15and:30cuts of the same spot. Verify thecreative-identifier-typevalues and explain why each cut needs its own Ad-ID.
Assessment
| Dimension | Weight | What Addie evaluates |
|---|---|---|
| Interaction models | 20% | Correctly identifies and works with all three creative agent types |
| Cross-platform | 25% | Adapts creatives across channels and formats |
| Compliance | 25% | Configures disclosures, provenance, and regulatory requirements |
| Pricing and accounts | 15% | Understands rate cards, reads pricing from list_creatives and list_creative_formats, interprets build costs, closes the report_usage loop |
| Analytical skill | 15% | Interprets creative feature evaluation and delivery results |
Start this module
Start S2 with Addie
βIβd like to start the creative specialist module.β