@anton.andrusenko/shopify-mcp-admin 0.1.0
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/LICENSE +22 -0
- package/README.md +454 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +8394 -0
- package/package.json +72 -0
package/package.json
ADDED
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@anton.andrusenko/shopify-mcp-admin",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "MCP server for Shopify Admin API - enables AI agents to manage Shopify stores with 40+ tools for products, inventory, collections, content, and SEO",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/index.js",
|
|
7
|
+
"types": "./dist/index.d.ts",
|
|
8
|
+
"bin": {
|
|
9
|
+
"shopify-mcp-admin": "./dist/index.js"
|
|
10
|
+
},
|
|
11
|
+
"sideEffects": false,
|
|
12
|
+
"scripts": {
|
|
13
|
+
"dev": "tsx src/index.ts",
|
|
14
|
+
"build": "tsup src/index.ts --format esm --dts",
|
|
15
|
+
"start": "node dist/index.js",
|
|
16
|
+
"lint": "biome check src/",
|
|
17
|
+
"lint:fix": "biome check --fix src/",
|
|
18
|
+
"format": "biome format --write src/",
|
|
19
|
+
"typecheck": "tsc --noEmit",
|
|
20
|
+
"test": "vitest --run",
|
|
21
|
+
"test:watch": "vitest",
|
|
22
|
+
"test:integration": "vitest run tests/integration/*.test.ts --testTimeout=60000",
|
|
23
|
+
"prepublishOnly": "npm run lint && npm run typecheck && npm run test && npm run build"
|
|
24
|
+
},
|
|
25
|
+
"keywords": [
|
|
26
|
+
"shopify",
|
|
27
|
+
"mcp",
|
|
28
|
+
"model-context-protocol",
|
|
29
|
+
"ai",
|
|
30
|
+
"llm",
|
|
31
|
+
"ecommerce",
|
|
32
|
+
"claude",
|
|
33
|
+
"chatgpt",
|
|
34
|
+
"cursor",
|
|
35
|
+
"admin-api"
|
|
36
|
+
],
|
|
37
|
+
"author": "shopify-mcp-admin contributors",
|
|
38
|
+
"license": "MIT",
|
|
39
|
+
"repository": {
|
|
40
|
+
"type": "git",
|
|
41
|
+
"url": "git+https://github.com/AntonAndrusenko/shopify-mcp-admin.git"
|
|
42
|
+
},
|
|
43
|
+
"bugs": {
|
|
44
|
+
"url": "https://github.com/AntonAndrusenko/shopify-mcp-admin/issues"
|
|
45
|
+
},
|
|
46
|
+
"homepage": "https://github.com/AntonAndrusenko/shopify-mcp-admin#readme",
|
|
47
|
+
"engines": {
|
|
48
|
+
"node": ">=20.0.0"
|
|
49
|
+
},
|
|
50
|
+
"files": [
|
|
51
|
+
"dist",
|
|
52
|
+
"README.md",
|
|
53
|
+
"LICENSE"
|
|
54
|
+
],
|
|
55
|
+
"dependencies": {
|
|
56
|
+
"@modelcontextprotocol/sdk": "^1.22.0",
|
|
57
|
+
"@shopify/shopify-api": "^11.14.1",
|
|
58
|
+
"express": "^5.1.0",
|
|
59
|
+
"zod": "^3.25.76"
|
|
60
|
+
},
|
|
61
|
+
"devDependencies": {
|
|
62
|
+
"@biomejs/biome": "^1.9.4",
|
|
63
|
+
"@types/express": "^5.0.5",
|
|
64
|
+
"@types/node": "^22.19.1",
|
|
65
|
+
"@types/supertest": "^6.0.3",
|
|
66
|
+
"supertest": "^7.1.4",
|
|
67
|
+
"tsup": "^8.5.1",
|
|
68
|
+
"tsx": "^4.20.6",
|
|
69
|
+
"typescript": "^5.9.3",
|
|
70
|
+
"vitest": "^3.2.4"
|
|
71
|
+
}
|
|
72
|
+
}
|