shopify-store-mcp 1.0.0 → 1.0.2
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 +6 -0
- package/package.json +6 -5
package/README.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Shopify Store MCP Server
|
|
2
2
|
|
|
3
|
+
[](https://www.npmjs.com/package/shopify-store-mcp)
|
|
4
|
+
[](https://www.npmjs.com/package/shopify-store-mcp)
|
|
5
|
+
[](https://opensource.org/licenses/ISC)
|
|
6
|
+
[](https://nodejs.org/)
|
|
7
|
+
[](https://www.typescriptlang.org/)
|
|
8
|
+
|
|
3
9
|
A Model Context Protocol (MCP) server that connects to **live Shopify stores** via the Admin and Storefront APIs. Unlike documentation-only MCPs, this server enables AI agents to perform real operations on your store.
|
|
4
10
|
|
|
5
11
|
## Features
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "shopify-store-mcp",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "MCP server for Shopify store operations via Admin and Storefront APIs",
|
|
5
5
|
"author": "Brahim Benzarti",
|
|
6
6
|
"license": "ISC",
|
|
@@ -28,16 +28,17 @@
|
|
|
28
28
|
],
|
|
29
29
|
"repository": {
|
|
30
30
|
"type": "git",
|
|
31
|
-
"url": "git+https://github.com/
|
|
31
|
+
"url": "git+https://github.com/Brahim-Benzarti/Shopify_store-MCP.git"
|
|
32
32
|
},
|
|
33
33
|
"bugs": {
|
|
34
|
-
"url": "https://github.com/
|
|
34
|
+
"url": "https://github.com/Brahim-Benzarti/Shopify_store-MCP/issues"
|
|
35
35
|
},
|
|
36
|
-
"homepage": "https://github.com/
|
|
36
|
+
"homepage": "https://github.com/Brahim-Benzarti/Shopify_store-MCP#readme",
|
|
37
37
|
"engines": {
|
|
38
38
|
"node": ">=18.0.0"
|
|
39
39
|
},
|
|
40
40
|
"scripts": {
|
|
41
|
+
"postinstall": "prisma generate",
|
|
41
42
|
"build": "prisma generate && tsc && node -e \"require('fs').chmodSync('dist/index.js', '755')\"",
|
|
42
43
|
"dev": "tsc --watch",
|
|
43
44
|
"start": "node dist/index.js",
|
|
@@ -59,6 +60,7 @@
|
|
|
59
60
|
"@shopify/storefront-api-client": "^1.0.0",
|
|
60
61
|
"dotenv": "^16.4.5",
|
|
61
62
|
"p-queue": "^8.0.1",
|
|
63
|
+
"prisma": "^6.3.0",
|
|
62
64
|
"zod": "^3.23.0"
|
|
63
65
|
},
|
|
64
66
|
"devDependencies": {
|
|
@@ -67,7 +69,6 @@
|
|
|
67
69
|
"@types/node": "^22.0.0",
|
|
68
70
|
"graphql": "^16.9.0",
|
|
69
71
|
"graphql-config": "^5.1.0",
|
|
70
|
-
"prisma": "^6.3.0",
|
|
71
72
|
"typescript": "^5.6.0"
|
|
72
73
|
},
|
|
73
74
|
"resolutions": {
|