@wix/mcp 1.0.46 → 1.0.47
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +36 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -12,6 +12,40 @@ npx @wix/mcp
|
|
|
12
12
|
|
|
13
13
|
After `npx @wix/cli login` writes your OAuth token to `~/.wix/auth/account.json`, pass `--wixCliAuth` to enable the auth-requiring tools — `CallWixSiteAPI`, `ListWixSites`, `ManageWixSite`, site-creation widgets, and `SupportAndFeedback`. The access token is refreshed transparently via the Wix OAuth endpoint when it nears expiry, and the refreshed token is written back atomically.
|
|
14
14
|
|
|
15
|
+
Without `--wixCliAuth`, `@wix/mcp` runs in docs-only mode (same as before). If `--wixCliAuth` is set but `~/.wix/auth/account.json` is missing, the process exits with an error telling you to run `wix login` first.
|
|
16
|
+
|
|
17
|
+
#### Claude Code
|
|
18
|
+
|
|
19
|
+
```sh
|
|
20
|
+
claude mcp add wix -- npx -y @wix/mcp --wixCliAuth
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
#### Codex
|
|
25
|
+
|
|
26
|
+
```sh
|
|
27
|
+
codex mcp add wix -- npx -y @wix/mcp --wixCliAuth
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
#### Cursor
|
|
31
|
+
|
|
32
|
+
Cursor doesn't expose a CLI for managing MCP servers — use **Settings → MCP → Add new MCP server**, or edit `~/.cursor/mcp.json` (global) / `<project>/.cursor/mcp.json` (per-project):
|
|
33
|
+
|
|
34
|
+
```json
|
|
35
|
+
{
|
|
36
|
+
"mcpServers": {
|
|
37
|
+
"wix": {
|
|
38
|
+
"command": "npx",
|
|
39
|
+
"args": ["-y", "@wix/mcp", "--wixCliAuth"]
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
#### Other clients (Claude Desktop, VS Code, etc.)
|
|
46
|
+
|
|
47
|
+
For any client without an `mcp add` CLI, drop this into its MCP config:
|
|
48
|
+
|
|
15
49
|
```jsonc
|
|
16
50
|
{
|
|
17
51
|
"mcpServers": {
|
|
@@ -23,7 +57,7 @@ After `npx @wix/cli login` writes your OAuth token to `~/.wix/auth/account.json`
|
|
|
23
57
|
}
|
|
24
58
|
```
|
|
25
59
|
|
|
26
|
-
Without `--wixCliAuth`, `@wix/mcp` runs in docs-only mode
|
|
60
|
+
Without `--wixCliAuth`, `@wix/mcp` runs in docs-only mode. If `--wixCliAuth` is set but cli config file is missing, the process exits with an error telling you to run `wix login` first.
|
|
27
61
|
|
|
28
62
|
### Local Development
|
|
29
63
|
|
|
@@ -353,4 +387,4 @@ MCP usage analytics and BI events can be viewed in the BI catalog:
|
|
|
353
387
|
```
|
|
354
388
|
|
|
355
389
|
|
|
356
|
-
> Node 20 is required to build.
|
|
390
|
+
> Node 20 is required to build.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/mcp",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.47",
|
|
4
4
|
"description": "A Model Context Protocol server for Wix AI tools",
|
|
5
5
|
"bin": "./build/bin-standalone.js",
|
|
6
6
|
"dependencies": {
|
|
@@ -110,5 +110,5 @@
|
|
|
110
110
|
]
|
|
111
111
|
}
|
|
112
112
|
},
|
|
113
|
-
"falconPackageHash": "
|
|
113
|
+
"falconPackageHash": "9fddd40b4b218f0c7bfde6277adb0250b447d8351637b045d9dc1220"
|
|
114
114
|
}
|