Integrations

Adobe Commerce (Magento) Integration

Connect Adobe Commerce or Magento Open Source to Zevin and expose your catalogue to AI shopping agents.

Zevin provides a native module for Adobe Commerce (formerly Magento 2) and Magento Open Source. The module registers a GraphQL data source that Zevin reads to build your AI-accessible product feed.

Supported versions

PlatformSupported versions
Adobe Commerce (Cloud)2.4.5+
Adobe Commerce (On-Premise)2.4.4+
Magento Open Source2.4.4+

PHP 8.1 or 8.2 is required. PHP 8.3 support is in beta.

Installation

1. Install the module via Composer

composer require zevin/module-zevin
bin/magento module:enable Zevin_Commerce
bin/magento setup:upgrade
bin/magento setup:di:compile
bin/magento cache:flush

2. Configure in Admin

Go to Stores → Configuration → Zevin → General:

  • API Key — paste your Zevin workspace API key
  • Environment — Production or Staging
  • Store views — select which store views to sync (useful for multi-language / multi-region setups)
  • Attribute mapping — map your custom Magento attributes to Zevin’s standard schema

3. Run the initial index

Zevin uses a dedicated Magento indexer:

bin/magento indexer:reindex zevin_product

Check indexer status:

bin/magento indexer:status zevin_product

The indexer respects Magento’s existing catalog_product index and adds no duplicate work.

Attribute mapping

Zevin’s AI feed requires a small set of standard attributes. The module attempts to auto-detect these from your catalogue, but you can override any mapping in Stores → Configuration → Zevin → Attribute Mapping:

Zevin fieldDefault Magento attribute
namename
descriptiondescription
short_descriptionshort_description
priceprice
skusku
brandmanufacturer
gtin— (map manually if you have it)
category_pathCategory hierarchy

Multi-store and B2B

For multi-store setups, each store view can be connected to a separate Zevin workspace or to the same workspace with different feed configurations.

For Adobe Commerce B2B, Zevin respects shared catalogue pricing. Customer group pricing is not currently exposed to AI agents — all AI queries receive the default (guest) pricing tier.

Cloud deployment

On Adobe Commerce Cloud, add the Zevin module to your composer.json and commit. The module deploys automatically through the Cloud build pipeline. No additional configuration is needed for the Magento Cloud CDN.

Performance

The Zevin indexer runs as a separate process and does not block storefront requests. For catalogues over 100,000 SKUs, schedule the initial reindex during off-peak hours. Incremental updates (saves, price changes) are processed immediately via Magento’s observer system with no perceptible latency impact.