MCP server
by wix
Build and manage your site easily with Wix website builder. Enjoy eCommerce, bookings, payments, and CRM using natural l
Connects AI tools to Wix's website building platform, allowing you to create and manage websites, eCommerce stores, and business tools through natural language commands.
Wix is an official MCP server published by wix that provides AI assistants with tools and capabilities via the Model Context Protocol. Build and manage your site easily with Wix website builder. Enjoy eCommerce, bookings, payments, and CRM using natural l It is categorized under developer tools.
You can install Wix in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server supports remote connections over HTTP, so no local installation is required.
MIT
Wix is released under the MIT license. This is a permissive open-source license, meaning you can freely use, modify, and distribute the software.
Add new capabilities to Claude beyond text generation
Example
Access external data sources, execute code, interact with tools and services
Transform Claude from chatbot to action-taking agent
Provide Claude with access to relevant context and data
Example
Load project documentation, access knowledge bases, query databases
Get more accurate, context-aware responses
Automate multi-step workflows combining AI and external tools
Example
Research → Summarize → Create document → Send notification
Complete complex tasks end-to-end without manual steps
Share your MCP server with the developer community
Strong directory entry: Wix surfaces stars and publisher context so we could sanity-check maintenance before adopting.
We wired Wix into a staging workspace; the listing’s GitHub and npm pointers saved time versus hunting across READMEs.
Strong directory entry: Wix surfaces stars and publisher context so we could sanity-check maintenance before adopting.
We wired Wix into a staging workspace; the listing’s GitHub and npm pointers saved time versus hunting across READMEs.
Wix reduced integration guesswork — categories and install configs on the listing matched the upstream repo.
Useful MCP listing: Wix is the kind of server we cite when onboarding engineers to host + tool permissions.
According to our notes, Wix benefits from clear Model Context Protocol framing — fewer ambiguous “AI plugin” claims.
Strong directory entry: Wix surfaces stars and publisher context so we could sanity-check maintenance before adopting.
I recommend Wix for teams standardizing on MCP; the explainx.ai page compares cleanly with sibling servers.
Wix has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.
showing 1-10 of 29
Wix now provides a Model Context Protocol (MCP) server that allows you to work with Wix tools and services in your chosen AI client. By configuring the Wix MCP server, you enable your client to search the Wix documentation, write code for the Wix platform, and make API calls on Wix sites. This saves you the time and effort of finding and applying the information in the documentation yourself.
For examples on how to use the Wix MCP server, see our sample prompts.
This section shows you the basic configuration you need to add to your AI tool to use the Wix MCP server.
To add the Wix MCP server to your agent, include the following JSON object in your MCP server configuration:
{
"mcpServers": {
"wix-mcp-remote": {
"type": "http",
"url": "https://mcp.wix.com/mcp"
}
}
}
Depending on your client, you may be able to configure the MCP server through the client settings, or even ask the client itself to add the configuration. See instructions on adding MCP servers for common AI tools:
The Wix MCP server provides the following tools in the table below. All of these tools are enabled by default.
| Tool | Description |
| SearchWixWDSDocumentation | Search the Wix Design System documentation. |
| SearchWixRESTDocumentation | Search the Wix REST documentation. |
| SearchWixSDKDocumentation | Search the Wix SDK documentation. |
| SearchBuildAppsDocumentation | Search the Wix Build Apps documentation. |
| SearchWixHeadlessDocumentation | Search the Wix Headless documentation. |
| WixBusinessFlowsDocumentation | Include complete step-by-step instructions for multi-step sample flows. |
| ReadFullDocsArticle | Fetch the full content of an article by article 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 for a given account and selected site. |
| ManageWixSite | Perform a site-level action, such as creating a site. |
| SupportAndFeedback | Prompt the user for feedback and send it to Wix. |
If you’re getting errors when running the MCP server, try the following:
Check the IDE logs.
Check if the error is related to your package manager. Make sure you have the latest node version as the default on the path.
Check that you entered the npx arguments correctly in the configuration. Make sure you included -y and the correct npm registry.
Include the full path to Node.
Restart the IDE.
Run the MCP server directly on the command line:
npx -y @wix/mcp-remote https://mcp.wix.com/sse
The connection to the server may be lost after a long period of inactivity, or if you switch the Wix account you’re authenticating with. In that case, it may help to delete ~/.mcp-auth (on Mac) or C:\Users\<username>\.mcp-auth (on Windows).
If the server still isn’t working, check the MCP debugging guide for more help.
Prerequisites
Time Estimate
15-60 minutes depending on server complexity
Steps
Troubleshooting
✓ Do
✗ Don't
💡 Pro Tips
Architecture
Model Context Protocol standardizes how AI hosts (Claude, Cursor) communicate with external tools and data sources through server implementations.
Protocols
Compatibility
✓ Use when
Use when you need Claude to access external data, execute actions, or integrate with tools. Best for extending AI capabilities beyond conversation.
✗ Avoid when
Avoid when native integrations exist (use official APIs directly), for real-time critical systems, or when security/compliance requires zero external dependencies.