MCP Directory

Wix MCP

Official

Wix's official hosted MCP: search Wix docs, generate platform code, and call real site APIs from your AI client.

Unverified
HTTP (remote)
OAuth
TypeScript

Add to your client

Copy the config for your MCP client and paste it into its config file.

Install / run
Add remote URL https://mcp.wix.com/mcp to your MCP client (type: http); fallback: npx -y @wix/mcp-remote https://mcp.wix.com/sse

Paste into ~/Library/Application Support/Claude/claude_desktop_config.json

{
  "mcpServers": {
    "wix-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://mcp.wix.com/mcp"
      ]
    }
  }
}

Claude Desktop connects to remote servers through the `mcp-remote` proxy (installed on first run via npx). Restart Claude Desktop after saving.

Step-by-step guides: Add to Claude Desktop · Add to Cursor · Add to Windsurf

Before you start

  • A Wix account (OAuth login in the browser)
  • An MCP client with remote HTTP support, or Node.js 19.9.0+ for the npx @wix/mcp-remote bridge

About Wix MCP

Setup is a three-line config: declare an http server with the URL https://mcp.wix.com/mcp and complete the browser OAuth when your client prompts. Wix documents the flow for Claude Desktop, Claude Web, Cursor, Windsurf, VS Code and Gemini CLI; the only local requirement is Node.js 19.9+ if your client connects via the @wix/mcp-remote proxy.

The documentation tools are the everyday value: search is split per doc set (Design System, REST, SDK, Build Apps, Headless), and ReadFullDocsMethodSchema returns the full request/response schema of an API method — which is what stops an agent from hallucinating field names when it writes Wix platform code. WixBusinessFlowsDocumentation returns complete step-by-step instructions for multi-step flows.

The account tools turn it into an operations surface: ListWixSites enumerates your sites, CallWixSiteAPI performs an action or query against a selected site, and ManageWixSite handles site-level actions such as creating a site. These act on production, so treat prompts that trigger them like deployments.

Trade-offs: it is hosted-only (no self-host option in this repo), long-idle connections can go stale (the fix is deleting ~/.mcp-auth and re-authenticating), and tool availability is account-scoped — what the agent can do tracks what your Wix account can do.

Tools & capabilities (12)

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

Return complete step-by-step instructions for multi-step sample flows.

ReadFullDocsArticle

Fetch the full content of a docs article by URL.

ReadFullDocsMethodSchema

Get the full request and response schema of an API method.

ListWixSites

Query the sites for a Wix account.

CallWixSiteAPI

Perform an action or query against a selected site.

ManageWixSite

Perform site-level actions such as creating a site.

SupportAndFeedback

Prompt the user for feedback and send it to Wix.

What this server can do

Wix MCP provides tools for these capabilities — tap one to see every MCP server that does the same:

When to use it

  • Write Wix SDK or REST code with the agent pulling exact method schemas instead of guessing
  • Search Wix Headless or Build Apps docs and read the full article inline
  • List the sites in your account and run an API query against one of them
  • Automate site-level operations such as creating a new site from a prompt

Quick setup

  1. 1Add an mcpServers entry with type http and url https://mcp.wix.com/mcp to your client config
  2. 2Complete the OAuth login with your Wix account when the client prompts
  3. 3Ensure Node.js 19.9.0+ if your client connects through npx @wix/mcp-remote
  4. 4Test with a docs query (search the Wix SDK docs), then try ListWixSites
  5. 5If the connection goes stale or you switch accounts, delete ~/.mcp-auth and re-authenticate

Security notes

OAuth links the server to your Wix account: CallWixSiteAPI and ManageWixSite perform real actions on your sites — including creating sites — not just doc lookups. Cached credentials live in ~/.mcp-auth when using the mcp-remote proxy; delete that folder to reset auth, especially after switching Wix accounts.

Wix MCP FAQ

Is the Wix MCP free to use?

Yes — the hosted server costs nothing beyond your existing Wix account and plans. Documentation search works as soon as OAuth completes; site API calls are limited by what your account and sites allow.

Can it modify my live Wix site?

Yes. CallWixSiteAPI performs real actions and queries on a selected site, and ManageWixSite can do site-level operations like creating a site. Review agent plans before letting them run write operations against production.

Do I need to install anything locally?

Usually no — clients with native remote MCP support only need the https://mcp.wix.com/mcp URL. Clients that lack it can bridge with npx -y @wix/mcp-remote https://mcp.wix.com/sse, which requires Node.js 19.9.0 or higher.

Alternatives to Wix MCP

Compare all alternatives →

Microsoft's official browser-automation MCP using Playwright's accessibility tree (no vision model).

Featured
Verified
stdio (local)
No auth
TypeScript
12 tools
Updated 26 days agoRepo

Up-to-date, version-specific library documentation injected into your coding agent.

Verified
stdio (local)
API key
TypeScript
2 tools
Updated 1 month agoRepo

Pack any local or remote repository into one AI-ready file your agent can grep and read incrementally.

Unverified
stdio (local)
No auth
TypeScript
6 tools
Updated 5 hours agoRepo