@abraracs/better-shopify-wc-mcp 1.0.0 → 1.0.1
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 +26 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,13 @@
|
|
|
1
1
|
# Better Shopify Web Components MCP
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
[](https://www.npmjs.com/package/@abraracs/better-shopify-wc-mcp)
|
|
4
|
+
[](https://opensource.org/licenses/MIT)
|
|
5
|
+
[](https://www.paypal.com/pools/c/9lqBpEaQ9G)
|
|
6
|
+
|
|
7
|
+
An MCP (Model Context Protocol) server that provides accurate Shopify Polaris web component documentation to AI tools like Cursor, GitHub Copilot, Claude, and Antigravity.
|
|
8
|
+
|
|
9
|
+
Supports all components featured in the official Shopify documentation:
|
|
10
|
+
👉 **[https://shopify.dev/docs/api/app-home/polaris-web-components](https://shopify.dev/docs/api/app-home/polaris-web-components)**
|
|
4
11
|
|
|
5
12
|
## Why This Exists
|
|
6
13
|
|
|
@@ -25,7 +32,22 @@ Add to `~/.cursor/mcp.json`:
|
|
|
25
32
|
```json
|
|
26
33
|
{
|
|
27
34
|
"mcpServers": {
|
|
28
|
-
"
|
|
35
|
+
"@abraracs/better-shopify-wc-mcp": {
|
|
36
|
+
"command": "npx",
|
|
37
|
+
"args": ["-y", "@abraracs/better-shopify-wc-mcp"]
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
### Antigravity
|
|
44
|
+
|
|
45
|
+
Add to your MCP config:
|
|
46
|
+
|
|
47
|
+
```json
|
|
48
|
+
{
|
|
49
|
+
"mcpServers": {
|
|
50
|
+
"@abraracs/better-shopify-wc-mcp": {
|
|
29
51
|
"command": "npx",
|
|
30
52
|
"args": ["-y", "@abraracs/better-shopify-wc-mcp"]
|
|
31
53
|
}
|
|
@@ -40,7 +62,7 @@ Add to `.vscode/mcp.json`:
|
|
|
40
62
|
```json
|
|
41
63
|
{
|
|
42
64
|
"servers": {
|
|
43
|
-
"
|
|
65
|
+
"@abraracs/better-shopify-wc-mcp": {
|
|
44
66
|
"command": "npx",
|
|
45
67
|
"args": ["-y", "@abraracs/better-shopify-wc-mcp"]
|
|
46
68
|
}
|
|
@@ -55,7 +77,7 @@ Add to `claude_desktop_config.json`:
|
|
|
55
77
|
```json
|
|
56
78
|
{
|
|
57
79
|
"mcpServers": {
|
|
58
|
-
"
|
|
80
|
+
"@abraracs/better-shopify-wc-mcp": {
|
|
59
81
|
"command": "npx",
|
|
60
82
|
"args": ["-y", "@abraracs/better-shopify-wc-mcp"]
|
|
61
83
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abraracs/better-shopify-wc-mcp",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "MCP server for Shopify Polaris web components - accurate attributes, no hallucinations, with workaround patterns",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|