Skip to content

Fix Wix MCP configuration - outdated endpoint #8669

@Uricorn

Description

@Uricorn

The Wix MCP server configuration on the VS Code MCP page uses an outdated /sse endpoint that doesn't match Wix's official documentation.

Current (broken) configuration:

{
  "name": "wix",
  "gallery": true,
  "url": "https://mcp.wix.com/sse"
}

Should be:

{
  "name": "wix",
  "gallery": true,
  "type": "http",
  "url": "https://mcp.wix.com/mcp"
}

Changes needed:

  • Replace /sse endpoint with /mcp
  • Add type of http
  • Update both the marketplace listing and any documentation references

Source (official Wix MCP documentation):

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

From: https://dev.wix.com/docs/sdk/articles/use-the-wix-mcp/about-the-wix-mcp

New encoded link example:
vscode:mcp/install?%7B%22name%22%3A%22wix%22%2C%22gallery%22%3Atrue%2C%22type%22%3A%22http%22%2C%22url%22%3A%22https%3A%2F%2Fmcp.wix.com%2Fmcp%22%7D

Thanks!

Metadata

Metadata

Assignees

Labels

No labels
No labels

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions