Wix MCP
Wix MCP server enables AI clients to search Wix docs, write code, and call site APIs efficiently. It streamlines access to Wix tools and services for faster development.
How to Install and Use Wix MCP
Wix MCP is a special server that helps you work with Wix tools and services using your AI client. It lets you search Wix documentation, write code, and interact with Wix sites easily. Here’s a simple guide on how to install and use Wix MCP step by step.
Before You Start
Before you install Wix MCP, you need to make sure your computer has Node.js installed. Node.js is a program needed to run Wix MCP. You must have Node.js version 19.9.0 or higher. If you don’t have it, go to nodejs.org and download it first.
How to Add Wix MCP to Your AI Tool
To use Wix MCP, you must add a configuration to your AI client. This configuration tells your client how to connect to the Wix MCP server.
The basic configuration looks like this:
{
"mcpServers": {
"wix-mcp-remote": {
"command": "npx",
"args": [
"-y",
"@wix/mcp-remote",
"https://mcp.wix.com/sse"
]
}
}
}
This JSON code tells your tool to use the remote Wix MCP server by running the command with npx. The server URL is https://mcp.wix.com/sse.
You need to put this code in your AI client’s MCP server configuration. Depending on the client you use, the exact place to add this might be different. Some clients let you add MCP servers in their settings, or by asking the client to add it for you.
Running Wix MCP Server Manually
If you want to test if Wix MCP works on your computer, you can run it directly using the command line (Terminal or Command Prompt). Here’s the command:
npx -y @wix/mcp-remote https://mcp.wix.com/sse
This command starts the Wix MCP server and connects it to the online Wix MCP service.
What Tools You Get with Wix MCP
When Wix MCP is connected, you can use many useful tools to help you with Wix development:
- SearchWixWDSDocumentation – Search Wix Design System docs.
- SearchWixRESTDocumentation – Search Wix REST API docs.
- SearchWixSDKDocumentation – Search Wix SDK docs.
- SearchBuildAppsDocumentation – Search Build Apps docs.
- SearchWixHeadlessDocumentation – Search Wix Headless docs.
- WixBusinessFlowsDocumentation – Step-by-step sample flows.
- ReadFullDocsArticle – Get full content of an article by its URL.
- ReadFullDocsMethodSchema – Get full request and response schema of an API method.
- ListWixSites – Get the sites from your Wix account.
- CallWixSiteAPI – Make API calls for your Wix sites.
- ManageWixSite – Perform actions like creating new sites.
- SupportAndFeedback – Send feedback to Wix.
All these tools are ready to use once the Wix MCP server is set up.
Troubleshooting Tips
Sometimes, errors happen when running the Wix MCP server. Here are quick tips to fix problems:
- Check your IDE logs for error messages.
- Make sure you have the correct Node.js version.
- Confirm you copied the
npxcommand with-yand the server URL exactly. - Try adding the full path to your Node.js executable.
- Restart your IDE or computer.
- Run the server directly in the command line (see the command above).
- Delete the authentication file if the connection breaks after a long time:
- On Mac:
~/.mcp-auth - On Windows:
C:\Users\<username>\.mcp-auth
- On Mac:
- Check the MCP debugging guide for more help.
By following these steps, you can install and use Wix MCP to get powerful Wix tools right within your AI client. It helps you save time by quickly accessing documentation, APIs, and site management features easily.