
Wix MCP
OfficialWix's official hosted MCP: search Wix docs, generate platform code, and call real site APIs from your AI client.
Add to your client
Copy the config for your MCP client and paste it into its config file.
Add remote URL https://mcp.wix.com/mcp to your MCP client (type: http); fallback: npx -y @wix/mcp-remote https://mcp.wix.com/ssePaste 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)
SearchWixWDSDocumentationSearch the Wix Design System documentation.
SearchWixRESTDocumentationSearch the Wix REST API documentation.
SearchWixSDKDocumentationSearch the Wix SDK documentation.
SearchBuildAppsDocumentationSearch the Wix Build Apps documentation.
SearchWixHeadlessDocumentationSearch the Wix Headless documentation.
WixBusinessFlowsDocumentationReturn complete step-by-step instructions for multi-step sample flows.
ReadFullDocsArticleFetch the full content of a docs article by URL.
ReadFullDocsMethodSchemaGet the full request and response schema of an API method.
ListWixSitesQuery the sites for a Wix account.
CallWixSiteAPIPerform an action or query against a selected site.
ManageWixSitePerform site-level actions such as creating a site.
SupportAndFeedbackPrompt 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
- 1Add an mcpServers entry with type http and url https://mcp.wix.com/mcp to your client config
- 2Complete the OAuth login with your Wix account when the client prompts
- 3Ensure Node.js 19.9.0+ if your client connects through npx @wix/mcp-remote
- 4Test with a docs query (search the Wix SDK docs), then try ListWixSites
- 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).
Up-to-date, version-specific library documentation injected into your coding agent.
Pack any local or remote repository into one AI-ready file your agent can grep and read incrementally.