Back to MCP Servers

Wix MCP Server

Official Wix MCP server. Search Wix docs (REST, SDK, Design System, Headless), list and manage Wix sites, and call site APIs from your AI client.

Content & CMS by Wix OAuth2 active
Overview

The Wix MCP Server is the official Model Context Protocol server hosted by Wix at https://mcp.wix.com/mcp. It gives AI clients like Claude, Cursor, Windsurf, VS Code, and Gemini CLI direct access to Wix documentation, site management actions, and platform API calls. Rather than running locally, the server is provider-hosted as a remote HTTP MCP endpoint, with authentication handled by Wix and a token cached on disk under ~/.mcp-auth.

The server is built around two capability groups. The first is documentation search: dedicated tools query the Wix REST API docs, Wix SDK docs, Wix Design System (WDS) docs, Build Apps docs, and Headless docs, with companion tools to fetch full articles, method schemas, and pre-built business flow walkthroughs. The second is site operations: tools list sites in your account, perform management actions, and call site-level APIs so an agent can read and write to live Wix sites it has access to.

This makes it useful for developers building on the Wix platform who want an AI assistant that can look up authoritative Wix references and then turn around and execute against real sites. Because the server is hosted by Wix itself, it stays current with the platform without requiring users to update a local install.

Tools

Tool Description
SearchWixWDSDocumentation Search the Wix Design System documentation.
SearchWixRESTDocumentation Search the Wix REST API documentation.
SearchWixSDKDocumentation Search the Wix SDK documentation.
SearchBuildAppsDocumentation Search the Wix Build Apps documentation.
SearchWixHeadlessDocumentation Search the Wix Headless documentation.
WixBusinessFlowsDocumentation Provides multi-step sample flow instructions for common Wix business scenarios.
ReadFullDocsArticle Retrieves the complete article content from a Wix documentation URL.
ReadFullDocsMethodSchema Returns the request/response schema for a specific Wix API method.
ListWixSites Lists sites in the authenticated Wix account.
CallWixSiteAPI Executes actions or queries against a specified Wix site's APIs.
ManageWixSite Performs site-level management operations such as creating or configuring sites.
SupportAndFeedback Submits user feedback and support requests to Wix.
Setup Guide

Prerequisites

  • A Wix account (you will be prompted to create one during first auth if needed)
  • Node.js 19.9.0 or higher installed locally
  • An MCP-compatible client (Claude Desktop, Claude Web, Cursor, Windsurf, VS Code, Gemini CLI)

Configuration

Add the following to your MCP client config:

{
  "mcpServers": {
    "wix-mcp-remote": {
      "type": "http",
      "url": "https://mcp.wix.com/mcp"
    }
  }
}

On first use, the server initiates an OAuth flow against your Wix account. The auth token is cached at ~/.mcp-auth on macOS/Linux or C:\Users\<username>\.mcp-auth on Windows.

Troubleshooting

If you hit auth errors after switching accounts or a long idle period, delete the .mcp-auth directory and reconnect. For other issues, check your IDE logs and verify your Node.js version.

Use Cases
  • Generate Wix Velo or SDK code with an AI agent that pulls method signatures directly from the official SDK and REST docs
  • Look up Wix Design System component usage while building a Wix Studio site in Cursor or VS Code
  • List sites in your Wix account and run queries against their APIs (eCommerce orders, Bookings, CMS collections) without leaving your IDE
  • Scaffold multi-step business flows (Bookings, Stores, Events) by pulling pre-built Wix Business Flows walkthroughs into the agent context
  • Build a Wix Headless frontend with the agent referencing authoritative Headless docs and method schemas on demand
Example Prompts
  • "Search the Wix REST docs for how to create an order in the eCommerce API and show me the full request schema."
  • "List the Wix sites in my account and tell me which ones have the Bookings app installed."
  • "Using the Wix SDK, write a Velo backend function that creates a CMS item in the Products collection."
  • "Pull the Wix Business Flow for setting up a Bookings service with online payments and walk me through it."
  • "Look up the WDS Button component props and generate a Wix Studio page that uses primary and secondary variants."
Pros
  • Officially built and hosted by Wix, so docs and APIs stay in sync with the platform
  • Remote HTTP server with no local install beyond Node.js, works across Claude, Cursor, Windsurf, VS Code, and Gemini CLI
  • Covers both documentation lookup (REST, SDK, WDS, Headless, Build Apps) and live site operations
  • OAuth flow handles auth automatically against your existing Wix account
Limitations
  • Requires a Wix account and only works with sites in that account
  • Site operations are constrained to whatever the Wix MCP API surface exposes, not raw Velo runtime access
  • Auth tokens cached at ~/.mcp-auth occasionally need to be cleared manually after account changes
Alternatives
  • Webflow MCP for managing Webflow sites and CMS via MCP
  • Shopify MCP for storefront and admin operations on Shopify, useful if eCommerce is the primary need
  • Community wix-data-mcp-server projects on GitHub for narrower Wix Data CMS access