IntegrateIntegrate
Integrations

Wix Integration

Manage Wix site stores, products, and e-commerce orders via REST

The Wix integration provides access to manage Wix site stores, products, and e-commerce orders via REST through the Integrate MCP server.

Installation

The Wix integration is included with the SDK:

import { wixIntegration } from "integrate-sdk/server";

Setup

Add Wix to your server configuration. Provide credentials via environment variables or integration config:

import { createMCPServer, wixIntegration } from "integrate-sdk/server";

export const { client: serverClient } = createMCPServer({
  apiKey: process.env.INTEGRATE_API_KEY,
  integrations: [
    wixIntegration({
      // See configuration options below
    }),
  ],
});

Client-Side Usage

import { client } from "integrate-sdk";

const result = await client.wix.queryProducts({});

console.log(result);

Environment Variables

  • WIX_API_KEY (when supported by this integration)

Configuration Options

Prop

Type

Tools

wix_query_products

Query products

Prop

Type

wix_get_product

Get product

Prop

Type

wix_create_product

Create product

Prop

Type

wix_update_product

Update product

Prop

Type

wix_search_orders

Search orders

Prop

Type

wix_get_order

Get order

Prop

Type

Notes

  • Category: Websites & CMS
  • Authentication mode: API key

On this page