---
title: "Wix Integration"
description: "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:

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

## Setup

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

```typescript
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

```typescript
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

<AutoTypeTable
  path="../src/integrations/wix.ts"
  name="WixIntegrationOptions"
/>


## Tools

### `wix_query_products`

Query products

<AutoTypeTable
  path="generated/tool-params/wix.ts"
  name="WixQueryProductsParams"
/>

### `wix_get_product`

Get product

<AutoTypeTable
  path="generated/tool-params/wix.ts"
  name="WixGetProductParams"
/>

### `wix_create_product`

Create product

<AutoTypeTable
  path="generated/tool-params/wix.ts"
  name="WixCreateProductParams"
/>

### `wix_update_product`

Update product

<AutoTypeTable
  path="generated/tool-params/wix.ts"
  name="WixUpdateProductParams"
/>

### `wix_search_orders`

Search orders

<AutoTypeTable
  path="generated/tool-params/wix.ts"
  name="WixSearchOrdersParams"
/>

### `wix_get_order`

Get order

<AutoTypeTable
  path="generated/tool-params/wix.ts"
  name="WixGetOrderParams"
/>

## Notes

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