store_list_products

List published products on a store.

Returns every published store_products row joined to master_products for title + base_cost_cents, plus a computed_price_cents using the price_override (if set) ELSE base_cost × (1 + markup / 100). Includes hero_image_url per product.

Request

arguments
{
  "slug": "string"
}

Response

content[0].text (JSON-parsed)
{
  "products": [
    {
      "store_product_id": "uuid",
      "master_product_id": "uuid",
      "title": "string",
      "base_cost_cents": "number",
      "computed_price_cents": "number",
      "hero_image_url": "string"
    }
  ]
}

Example

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

Related tools