store_list_mockups

List saved mockups on a store.

Returns every ai_mockups row for the store, newest first. Each row includes mockup_url, master_product_id, store_product_id, engine, face, placement, is_primary, created_at. Pass product_id to filter to a single master_product.

Request

arguments
{
  "slug": "string",
  "product_id": "uuid?  // optional master_product filter"
}

Response

content[0].text (JSON-parsed)
{
  "mockups": [
    {
      "id": "uuid",
      "mockup_url": "string",
      "master_product_id": "uuid",
      "store_product_id": "uuid",
      "face": "\"front\" | \"back\"",
      "is_primary": "boolean",
      "created_at": "ISO-8601"
    }
  ]
}

Example

tool call
{
  "name": "store_list_mockups",
  "arguments": { "slug": "bravo" }
}

Related tools