
How to add Wix MCP to Claude Desktop
Wix's official hosted MCP: search Wix docs, generate platform code, and call real site APIs from your AI client. Paste the config into ~/Library/Application Support/Claude/claude_desktop_config.json and restart Claude Desktop.
Last updated June 14, 2026 ยท 15โ ยท http ยท oauth ยท official
Claude Desktop config for Wix MCP
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{
"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.
Setup steps
- 1Open Claude Desktop โ Settings โ Developer โ Edit Config (this opens ~/Library/Application Support/Claude/claude_desktop_config.json).
- 2Paste the Wix MCP config below under the top-level "mcpServers" key.
- 3Fill in any placeholder secrets (API keys, paths) in the snippet.
- 4Save the file, then fully quit and reopen Claude Desktop.
- 5Open a chat and confirm Wix MCP's tools appear under the ๐ tools menu.
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
What Wix MCP can do in Claude Desktop
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.
Security
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 + Claude Desktop FAQ
Where is the Claude Desktop config file?
Claude Desktop reads MCP servers from ~/Library/Application Support/Claude/claude_desktop_config.json. Paste the Wix MCP config there under the "mcpServers" key and restart the client.
Is Wix MCP safe to use with Claude Desktop?
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.
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.