Skip to content
AdlyseMCP Docs
Product guideMCP reference
⌘K
Open Adlyse
⌘K
Overview
QuickstartAuthentication
adlyse-insights
adlyse-reports
adlyse-ads
list_campaignsget_performancelist_adsget_ad_performancelist_change_eventsupdate_campaign_statusupdate_campaign_budget
adlyse-workflows
adlyse-adminadlyse-all
  1. Overview
  2. adlyse-ads

list_creative_library

Browse the organization’s persisted Creative Library — the actual creatives (synced from connected ad accounts, plus generated/uploaded drafts) with ad copy, a viewable media URL per creative, and fixed 30-day rollups.

Use this to SEE what the org’s ads look like (fetch each media_url) — for example, to compare messaging and angles against competitor ads from the insights server’s list_competitor_ads. list_ads / get_ad_performance return names and metrics only; this returns the creative content itself.

Parameters#

NameTypeRequiredDefaultDescription
lifecyclestringnodraft | active | paused | retired | archived
platformstringnometa_ads | google_ads | microsoft_ads (platforms whose creatives Adlyse syncs)
sort_bystringnolast_activelast_active | spend | ctr | roas | frequency | impressions | first_seen
limitintegerno24Max creatives (max 50)

Returns#

json
{
  "creatives": [
    {
      "id": "ad_crtv_abc123",
      "name": "Summer hero v2",
      "platform": "meta_ads",
      "format": "image",
      "lifecycle": "active",
      "source": "synced",
      "media_url": "https://…/thumb.jpg",
      "copy": { "headline": "…", "body": "…", "cta": "SHOP_NOW" },
      "spend_30d": 1240.55,
      "impressions_30d": 84000,
      "clicks_30d": 910,
      "ctr_30d": 0.0108,
      "roas_30d": 3.1,
      "conversions_30d": 41,
      "frequency_30d": 2.4,
      "first_seen_at": "2026-05-02T00:00:00+00:00",
      "last_active_at": "2026-07-11T00:00:00+00:00"
    }
  ],
  "total": 132,
  "limit": 24,
  "sort_by": "last_active",
  "source": "adlyse.creative_library@v1"
}

media_url prefers the durable mirrored thumbnail over the platform’s expiring CDN link. Rollups are fixed 30-day figures computed at the last sync (ctr_30d is a fraction); for custom windows use get_ad_performance.

Errors#

error_typeWhen
auth_errorMissing / invalid API key
validation_errorInvalid lifecycle / sort_by value