BigCommerce + Brevo 集成
BigCommerce + Brevo
通过 MCP 把 BigCommerce 商店数据接入 Brevo 的互动平台。同步客户、按订单触发营销活动、挽回弃购购物车、带动复购,全部由 Claude 中的 AI 代理编排完成。
使用的 MCP 服务器
| 服务器 | 软件包 / URL | 认证方式 | 用途 |
|---|---|---|---|
| BigCommerce MCP | 社区版 MCP 服务器 | API token(V3 版本) | 客户、订单、商品、购物车、销售渠道 |
| Brevo MCP | mcp.brevo.com/v1/brevo/mcp | Token | 联系人、邮件营销活动、短信、WhatsApp、事件追踪 |
Tip
BigCommerce 提供了一套完整的 V3 版 REST 接口。你可以使用社区版的 MCP 服务器,也可以采用 自定义 API 接入 Brevo 的做法,把商店数据和 Brevo MCP 一起接入 Claude。
配置
第 1 步:创建 BigCommerce API 凭据
- 在 BigCommerce 商家后台,依次进入 设置(Settings)> 接口(API)> 接口账号(API Accounts)
- 新建一个 V3 版接口账号,并授予以下读取权限:客户(Customers)、订单(Orders)、商品(Products)、购物车(Carts)
- 记录下生成的 Store Hash、Client ID 和 Access Token 这三项凭据
第 2 步:连接两个 MCP 服务器
{ "mcpServers": { "brevo": { "command": "npx", "args": [ "mcp-remote", "https://mcp.brevo.com/v1/brevo/mcp", "--header", "Authorization: Bearer ${BREVO_MCP_TOKEN}" ], "env": { "BREVO_MCP_TOKEN": "your-brevo-mcp-token" } }, "bigcommerce": { "command": "npx", "args": ["-y", "bigcommerce-mcp-server"], "env": { "BIGCOMMERCE_STORE_HASH": "your-store-hash", "BIGCOMMERCE_ACCESS_TOKEN": "your-access-token" } } }}第 3 步:验证连接
向 Claude 提问:
> How many customers does my BigCommerce store have?> How many contacts are in my Brevo account?第一个问题 Claude 应当调用 BigCommerce MCP 来回答,第二个问题则应当调用 Brevo MCP。
用例 1:客户同步代理
把 BigCommerce 的客户连同购买历史一起同步为 Brevo 联系人:
---name: bigcommerce-customer-syncdescription: Sync BigCommerce customers to Brevo contacts with order dataversion: 1.0.0temperature: 0.1tools: - bigcommerce - brevo_contacts - brevo_attributes - brevo_liststriggers: - schedule: "0 */6 * * *" - event: customer_created - event: order_completed---
# BigCommerce Customer Sync Agent
Synchronize customer data from BigCommerce to Brevo contacts.
## Strategy
1. Query BigCommerce for customers modified since last sync2. For each customer, fetch order history from BigCommerce3. Create or update Brevo contact with profile + commerce attributes4. Segment into Brevo lists: - New registrations → "Welcome Series" list - Repeat buyers (2+ orders) → "Loyal Customers" list - High-value (>$500 LTV) → "VIP" list - Inactive (no order in 90 days) → "Win-Back" list
## Field Mapping
| BigCommerce Field | Brevo Attribute ||------------------|-----------------|| email | EMAIL || first_name | FIRSTNAME || last_name | LASTNAME || phone | SMS || company | COMPANY || date_created | SIGNUP_DATE || orders_count (computed) | ORDER_COUNT || total_spent (computed) | TOTAL_SPENT || last_order_date (computed) | LAST_ORDER || customer_group_id | BC_SEGMENT || accepts_product_review_abandoned_cart_emails | OPT_IN |
## Rules- ONLY sync customers who have accepted marketing emails- NEVER overwrite Brevo data if BigCommerce field is empty- ALWAYS validate phone numbers to E.164 format before sync- Track events: bc_sync_success, bc_sync_error用例 2:购后营销活动代理
根据 BigCommerce 订单数据触发个性化的购后序列:
---name: bigcommerce-post-purchasedescription: Orchestrate post-purchase campaigns based on BigCommerce order eventsversion: 1.0.0temperature: 0.3tools: - bigcommerce - brevo_contacts - brevo_email_campaign_management - brevo_templates - brevo_sms_campaignstriggers: - event: order_completed - event: order_shipped---
# BigCommerce Post-Purchase Agent
When a BigCommerce order completes or ships, trigger the appropriate engagement sequence in Brevo.
## Sequence Logic
### First-Time Buyers1. Immediate: Order confirmation (transactional)2. Day 3: Welcome email with brand story and product care tips3. Day 7: How-to guide for purchased product category4. Day 14: Review request with direct link5. Day 30: Cross-sell based on purchased category
### Repeat Buyers1. Immediate: Order confirmation2. Day 3: Loyalty reward notification3. Day 14: "Restock" reminder if consumable product4. Day 21: Early access to new arrivals in preferred category
### High-Value Orders (>$200)1. Immediate: Premium order confirmation2. Day 1: Personal thank-you email3. Day 3: SMS with tracking + styling/usage tips4. Day 7: VIP program invitation
### Order Shipped1. Immediate: Shipping confirmation with tracking link2. +2 days: SMS tracking update3. +5 days (estimated delivery): "How's your order?" check-in
## Rules- ALWAYS check order status before sending, skip if cancelled/refunded- NEVER send marketing to customers who haven't opted in- Personalize with: product name, order number, customer first name- Use Brevo template variables for dynamic content用例 3:弃购购物车挽回
把 BigCommerce 购物车数据与 Brevo 的消息能力打通:
---name: bigcommerce-cart-recoverydescription: Recover BigCommerce abandoned carts via Brevo email, SMS, and WhatsAppversion: 1.0.0temperature: 0.2tools: - bigcommerce - brevo_contacts - brevo_email_campaign_management - brevo_templates - brevo_sms_campaignstriggers: - event: cart_abandoned conditions: - cart_value: "> 30" - time_since_activity: "> 1h"---
# BigCommerce Cart Recovery Agent
Monitor BigCommerce abandoned carts and execute recovery sequences through Brevo.
## Recovery Sequence
1. **+1 hour**: Reminder email with cart contents and product images2. **+24 hours**: If no open → SMS with short link to cart3. **+48 hours**: If no recovery → Email with 10% discount code4. **+72 hours**: If cart > $150 and no recovery → WhatsApp with personal message
## Cart Data to Include- Product images and names (from BigCommerce)- Cart total with currency formatting- Direct checkout recovery URL- Discount code (generated dynamically for step 3)
## Rules- NEVER send to customers who already completed checkout- ALWAYS check cart status before each step- Maximum 4 touchpoints per abandoned cart- Respect opt-out preferences per channel示例:自然语言编排
两个 MCP 服务器都连接完成后:
You: "Find BigCommerce customers who bought more than twice in the last 3 months but aren't in my Brevo 'Loyal Customers' list. Add them and trigger a loyalty reward email."
Claude: Querying BigCommerce for repeat customers...[Uses bigcommerce MCP to fetch customers with 2+ orders in last 90 days]
Found 67 repeat customers.Checking Brevo list membership...[Uses brevo_contacts to check "Loyal Customers" list]
29 customers are missing from the list. Processing...[Creates/updates 29 contacts with ORDER_COUNT and TOTAL_SPENT][Adds 29 to "Loyal Customers" list][Triggers loyalty reward email template]
Done:- 29 customers added to "Loyal Customers" list- Loyalty reward emails sent to all 29- ORDER_COUNT and TOTAL_SPENT attributes updated- 38 were already in the list (skipped)后续步骤
- Brevo MCP 服务器,查看全部 Brevo MCP 模块的完整列表
- 代理规范,了解如何自定义代理的行为
- Shopify + Brevo,查看 Shopify 商店的集成方式
- 自定义 API + Brevo,为任意电商平台构建自己的连接器