What is a creative agent?
A creative agent is a service that:- Defines formats - Specifies what assets are required and how they should be structured
- Validates manifests - Ensures creative manifests meet format requirements
- Generates previews - Shows how creatives will render
- Builds creatives (optional) - Generates manifests from natural language briefs or retrieves them from a library
- Hosts a creative library (optional) - Lets buyers browse and filter existing creatives
Three interaction models
Creative agents fall into three distinct categories based on how assets arrive and what the output is. Identifying which model your agent follows determines which tasks to implement and how buyers will interact with you.Stateless: template and transformation agents
Examples: Celtra, format conversion services, rich media template platforms The buyer passes all assets inline with each call. Your agent applies a template or transformation and returns the result. There is no persistent creative library — every call is self-contained.| Task | Role |
|---|---|
list_creative_formats | Discover available templates and their asset requirements |
preview_creative | Render a template with provided assets |
build_creative | Transform input assets into a serving tag |
supports_transformation: true
The buyer’s workflow: discover your formats → preview with real assets → request built creatives for trafficking.
Stateful (pre-loaded): ad servers
Examples: Innovid, Flashtalking, CM360 Creatives already exist in your system, loaded through your platform’s UI or API. Buyers connect to browse your library and request serving tags for their media buys. The buyer never pushes assets to you — they reference creatives that are already there.| Task | Role |
|---|---|
list_creatives | Browse existing creatives in the library |
build_creative | Generate a serving tag for a specific creative_id and media buy |
preview_creative | Preview an existing creative |
get_creative_delivery | Report variant-level delivery metrics |
has_creative_library: true
The buyer’s workflow: browse your creative library → request tags per media buy → track delivery.
Stateful (push): sales agents with creative
Examples: Publisher platforms, retail media networks, native ad platforms Buyers push creative assets or catalog items to your platform. You validate, store, and render them in your environment. This is where catalog-driven creative gets interesting — buyers might push product feeds, flight listings, or hotel inventory that you render as native ads.| Task | Role |
|---|---|
list_creative_formats | Discover what formats you accept |
sync_creatives | Accept pushed assets or catalog items |
preview_creative | Preview pushed creatives in your platform’s environment |
get_creative_delivery | Report delivery metrics |
has_creative_library: true
The buyer’s workflow: discover your accepted formats → push assets → preview in your environment.
Choosing your model
The key question is: where do the assets come from?- If the buyer sends assets with every call → stateless (template/transformer)
- If creatives already exist in your system → stateful (ad server)
- If the buyer pushes assets to you for hosting → stateful (sales agent)
get_adcp_capabilities so buyers can determine the right interaction model.
Core requirements
1. Format ID namespacing
Every format you define must use structured format IDs with your agent URL to prevent conflicts:agent_urlmust match your agent’s URLidshould be descriptive and unique within your namespace- Use lowercase with underscores for consistency
2. Format validation
When formats reference your agent_url, you are the authority for:- Format specifications
- Asset validation rules
- Technical requirements
- Preview generation
Required tasks
Creative agents must implement these two tasks:list_creative_formats
Return all formats your agent defines. This is how buyers discover what creative formats you support. Key responsibilities:- Return complete format definitions with all
assets(both required and optional) - Include your
agent_urlin each format - Use proper namespacing for
format_idvalues
preview_creative
Generate a visual preview showing how a creative manifest will render in your format. Key responsibilities:- Validate manifest against format requirements
- Return validation errors if manifest is invalid
- Generate visual representation (URL, image, or HTML)
- Preview should be accessible for at least 24 hours
Optional tasks
build_creative
Generate a creative manifest from a natural language brief, transform an existing manifest to a new format, or retrieve a library creative as a delivery-ready manifest. Key responsibilities:- Parse natural language brief or resolve a
creative_idfrom your library - Generate or source appropriate assets
- Return valid manifest for the target format
- Substitute
macro_valuesinto serving tags when provided - Optionally return preview URL
list_creatives
Browse and filter creatives in your library. Implement this if your platform hosts a creative library that buyers need to query. Key responsibilities:- Return creatives accessible to the authenticated account
- Support filtering by format, status, tags, and date range
- Support pagination for large libraries
- Optionally include dynamic creative optimization (DCO) variable definitions per creative
sync_creatives
Accept creative asset uploads into your library. Implement this if your platform allows buyers to push assets. Key responsibilities:- Validate creatives against format specifications
- Return per-creative results with platform-assigned IDs
- Support upsert semantics (create or update by
creative_id) - Optionally support bulk package assignments (for agents that also manage media buys)
- Optionally support async approval workflows for brand safety review
Validation best practices
Manifest validation
When validating manifests:- Check format_id - Ensure it references your agent
- Validate required assets - All required assets must be present
- Check asset types - Assets must match specified types
- Validate requirements - Dimensions, file types, sizes, etc.
- URL accessibility - Verify asset URLs are accessible (optional but recommended)
Disclosure requirements
When a creative brief includescompliance.required_disclosures, creative agents must ensure each disclosure appears in the generated creative. The workflow:
-
Check format support — Compare each
required_disclosures[].positionagainst the format’ssupported_disclosure_positionsordisclosure_capabilities. If a required position is not supported by the format, return a validation error rather than silently dropping it. Whendisclosure_capabilitiesis present, use it for persistence-aware matching — verify that the format supports both the required position and the required persistence mode. -
Respect persistence — When the brief specifies
persistenceon a required disclosure, the creative agent must satisfy it using a position that supports that persistence mode in the format’sdisclosure_capabilities. For example, if a brief requires"continuous"persistence for an EU AI Act disclosure, the format must declare that position with"continuous"in itsdisclosure_capabilities. When the brief omitspersistence, use the most restrictive persistence mode the format supports for that position. -
Render disclosures — For positions your format supports:
footer,overlay,end_card,prominent: Render the disclosuretextinto the creative at the specified positionaudio,pre_roll: Include disclosure as spoken audio. Respectmin_duration_msif specified.subtitle: Include as a text track within the video creativecompanion: Deliver in the companion ad unit alongside the primary creative
-
Respect jurisdiction scoping — A disclosure with
jurisdictions: ["US"]is legally required only in the US. Creative agents that produce a single creative per brief should include all jurisdictional disclosures. If your agent can produce jurisdiction-specific variants, filter disclosures by theirjurisdictionsfield. -
Propagate into provenance — When the brief specifies
persistenceandpositionon a required disclosure, propagate these intoprovenance.disclosure.jurisdictions[].render_guidanceon the creative manifest. The brief is a creation-time document; at serve time, the publisher has the creative and its provenance, not the brief. If the creative agent does not propagate persistence into provenance render guidance, the publisher has no way to know what persistence the regulation requires. -
Preserve through regeneration — When regenerating or resizing a creative, carry forward all disclosures from the
BriefAssetattached to the manifest. ABriefAssetis abrief-typed asset in the format’sassetsarray that carries the creative brief through the manifest, ensuring disclosures survive format adaptation.
"KI-generiert" disclosure at overlay position with persistence: "continuous" for eu_ai_act_article_50. Your format declares disclosure_capabilities: [{ "position": "overlay", "persistence": ["continuous", "initial"] }]. The format supports continuous overlay, so the creative agent renders the disclosure as a persistent overlay visible throughout the content. The agent also propagates render_guidance: { "persistence": "continuous", "positions": ["overlay"] } into the EU jurisdiction entry in provenance.disclosure.jurisdictions[].
Format evolution
When updating format definitions:- Additive changes (new optional assets with
required: falseinassets) are safe - Breaking changes (removing assets, changing requirements) require new format_id
- Consider versioning:
youragency.com:format_name_v2 - Maintain backward compatibility when possible
Deployment checklist
Before launching your creative agent:- MCP and/or A2A endpoints are accessible
- All format_ids use proper namespacing (
domain:id) - Domain in format_id matches your
agent_urldomain -
list_creative_formatsreturns all your formats -
preview_creativevalidates manifests and generates previews - Format definitions include complete asset requirements
- Documentation available for your custom formats
Integration patterns
Pattern 1: creative agency
You’re a creative agency building custom formats for brands:Pattern 2: platform-specific formats
You’re a platform defining specialized formats:Pattern 3: format extension service
You provide enhanced versions of standard formats:Pattern 4: feed-native/social format agent
You host ad formats that render as native content within your platform’s feed:preview_creative for a feed-native format, the preview renders the buyer’s assets inside the platform’s UI — avatar, engagement buttons, community badge, and all:
preview_creative even for simple formats: the platform chrome is the differentiator.
Platform mapping
If you’re wrapping an existing ad server or creative management platform, this section shows how common platform concepts map to the creative protocol.Concept mapping
| Platform concept | AdCP equivalent | Notes |
|---|---|---|
| Advertiser / account | Account (via accounts protocol) | Buyer establishes access before querying the library |
| Creative concept / group / template folder | concept_id in list_creatives | Groups related creatives across sizes/formats (Flashtalking concepts, Celtra campaign folders, CM360 creative groups) |
| Creative | Creative item in list_creatives response | |
| Creative type + size | format_id (structured object with agent_url, id, dimensions) | AdCP combines type and size into a single format reference |
| Template (Celtra’s term) | Format (via list_creative_formats) | Celtra templates define structure and available properties; AdCP formats define structure and available assets |
| Template object properties (Celtra) | variables array | Named slots with types (text, color, image, video, number, boolean) — near-exact match |
| Active / archived / pending | status field | |
| Ad tag / serving tag | Asset in a creative manifest (html, javascript, or vast type) | Tags are just assets — no special concept |
| Placement / ad unit | Package within a media buy | The buy context where a creative is assigned |
| DCO variables / dynamic fields | variables array (via include_variables=true) | Named slots with types and defaults |
| Data feed / targeting rules | Not modeled | AdCP models the variable slots, not the optimization rules |
| CTV/OTT ad server (Innovid, Brightcove) | Same as ad server, plus VAST/SSAI delivery model | VAST tags in vast-type assets; companion ads via multi-render formats |
Tag generation models
Ad servers differ in how they produce serving tags. The creative protocol’sbuild_creative accommodates all common models through the combination of creative_id, target_format_id, and optional media_buy_id/package_id:
Universal tags (Celtra, Flashtalking) — A single tag that adapts to multiple environments (web, in-app). No placement context is needed — build_creative(creative_id, target_format_id) produces a tag that works wherever it’s trafficked. Best for agency/programmatic use cases where the final destination is unpredictable, reducing trafficking errors.
Single-placement tags (Celtra, Flashtalking, CM360) — A tag scoped to one specific size and placement. The target_format_id specifies the exact dimensions (e.g., 300x250 web). For publisher template use cases where the destination is known, this is the most common choice.
Multi-placement tags (Celtra) — A tag covering multiple sizes within one environment. The target_format_id references a format whose renders array defines the supported sizes. Useful for publisher templates that need several sizes (e.g., 300x250 + 320x50 + 728x90 web) but want a single tag to traffic.
Placement-level tags (CM360) — The platform generates tags per placement, not per creative. The caller passes media_buy_id and optionally package_id to provide the trafficking context. A CM360 adapter uses the media buy context to produce a tag scoped to the target format.
The choice between these models is often a campaign context decision, not a platform constraint. The same creative agent may produce different tag types depending on the caller’s needs:
| Use case | Tag type | build_creative parameters |
|---|---|---|
| Agency/programmatic (unknown destination) | Universal | creative_id + target_format_id (universal format) |
| Publisher template (known placement) | Single placement | creative_id + target_format_id (specific size) |
| Publisher template (multiple sizes) | Multi-placement | creative_id + target_format_id (multi-render format) |
| Ad server with trafficking context | Placement-level | creative_id + target_format_id + media_buy_id + package_id |
html or javascript asset.
Variable models
Platforms represent dynamic content differently. The creative protocol’svariables array accommodates the common patterns:
Named variable slots (Flashtalking) — Each creative has explicit variables with IDs, names, and types. Maps directly to creative-variable.json.
Template object properties (Celtra) — Templates define templateObjects with typed properties (text, color, image, video, percentage, hidden) scoped to specific components and size variants. A Celtra adapter flattens these into the variables array, using the template object label and property label to construct variable_id and name.
Rule-based asset selection (CM360) — Dynamic creatives use dynamicAssetSelection with targeting rules, fed by data feeds. This model is not variable-based — CM360 adapters would typically not populate the variables array, and has_variables filtering would not apply.
Macro handling
Platforms use their own macro syntax internally. Themacro_values parameter in build_creative lets the caller pass universal macro values (e.g., CLICK_URL) that the creative agent substitutes into the output tag using whatever syntax the platform expects.
| Universal macro | CM360 equivalent | Flashtalking equivalent |
|---|---|---|
CLICK_URL | %c | [clickTag] |
CACHEBUSTER | %n | [timestamp] |
TIMESTAMP | %t | [timestamp] |
Re-submission after rejection
Whensync_creatives or creative review results in a rejection, the fix-and-resubmit flow uses upsert semantics:
- Check rejection reason via
list_creatives(librarystatus: "rejected") orget_media_buys(packageapproval_status: "rejected"withrejection_reason) - Fix the creative (update assets, adjust copy, replace media)
- Re-submit via
sync_creativeswith the samecreative_id— the agent updates the existing creative and re-triggers review - Poll
list_creativesuntilstatustransitions frompending_reviewtoapprovedorrejected
Which tasks to implement
The table below maps each interaction model to the tasks it should implement. See Three interaction models above for detailed descriptions.| Interaction model | Required tasks | Additional tasks | Capabilities |
|---|---|---|---|
| Template/transformer (Celtra, format conversion) | list_creative_formats, preview_creative, build_creative | — | supports_transformation: true |
| Ad server (Innovid, Flashtalking, CM360) | list_creatives, build_creative, preview_creative | list_creative_formats, get_creative_delivery | has_creative_library: true |
| Sales agent with creative (publishers, retail media) | list_creative_formats, sync_creatives, preview_creative | get_creative_delivery | has_creative_library: true |
| Generative creative tool | list_creative_formats, preview_creative, build_creative | — | supports_generation: true |
get_adcp_capabilities so buyer agents can determine the correct interaction model without trial and error. See Interaction models in the spec.
Platforms with a creative library should also implement the accounts protocol so buyers can establish access before querying. This is the same accounts protocol used by sales agents for media buys.
Related
- Creative Formats - Understanding format structure
- Creative Manifests - How manifests work
- Asset Types - Asset specifications
- list_creative_formats task - Format discovery API reference
- list_creatives task - Creative library API reference
- build_creative task - Manifest generation API reference
- preview_creative task - Preview rendering API reference