@anton.andrusenko/shopify-mcp-admin 0.4.0 → 0.5.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/README.md +55 -6
- package/dist/index.js +1159 -13
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @anton.andrusenko/shopify-mcp-admin
|
|
2
2
|
|
|
3
|
-
> 🛍️ **MCP Server for Shopify Admin API** — Enable AI agents to manage Shopify stores with
|
|
3
|
+
> 🛍️ **MCP Server for Shopify Admin API** — Enable AI agents to manage Shopify stores with 54 powerful tools
|
|
4
4
|
|
|
5
5
|
[](https://www.npmjs.com/package/@anton.andrusenko/shopify-mcp-admin)
|
|
6
6
|
[](https://opensource.org/licenses/MIT)
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
|
|
12
12
|
## ✨ Features
|
|
13
13
|
|
|
14
|
-
- 🛠️ **
|
|
14
|
+
- 🛠️ **54 MCP Tools** — Complete store management: products, inventory, collections, pages, blogs, redirects, markets, locales & translations
|
|
15
15
|
- 🤖 **AI-Optimized** — Tool descriptions and error messages designed for LLM comprehension
|
|
16
16
|
- 🔌 **Dual Transport** — STDIO for Claude Desktop, HTTP for ChatGPT/OpenAI
|
|
17
17
|
- ⚡ **Rate Limiting** — Automatic retry with exponential backoff for Shopify API limits
|
|
@@ -120,6 +120,9 @@ Configure these scopes when creating your Custom App:
|
|
|
120
120
|
| `read_inventory`, `write_inventory` | Inventory management |
|
|
121
121
|
| `read_content`, `write_content` | Pages, blogs, articles |
|
|
122
122
|
| `read_online_store_navigation`, `write_online_store_navigation` | URL redirects |
|
|
123
|
+
| `read_markets`, `write_markets` | Markets (international selling) |
|
|
124
|
+
| `read_locales`, `write_locales` | Shop locales and translations |
|
|
125
|
+
| `read_translations`, `write_translations` | Translatable content |
|
|
123
126
|
|
|
124
127
|
📖 **Setup Guide:** [Shopify Custom App Documentation](https://shopify.dev/docs/apps/tools/development-stores)
|
|
125
128
|
|
|
@@ -143,7 +146,7 @@ Edit your Claude Desktop configuration file:
|
|
|
143
146
|
"mcpServers": {
|
|
144
147
|
"shopify": {
|
|
145
148
|
"command": "npx",
|
|
146
|
-
"args": ["@anton.andrusenko/shopify-mcp-admin"],
|
|
149
|
+
"args": ["-y", "@anton.andrusenko/shopify-mcp-admin"],
|
|
147
150
|
"env": {
|
|
148
151
|
"SHOPIFY_STORE_URL": "your-store.myshopify.com",
|
|
149
152
|
"SHOPIFY_ACCESS_TOKEN": "shpat_xxxxx"
|
|
@@ -160,7 +163,7 @@ Edit your Claude Desktop configuration file:
|
|
|
160
163
|
"mcpServers": {
|
|
161
164
|
"shopify": {
|
|
162
165
|
"command": "npx",
|
|
163
|
-
"args": ["@anton.andrusenko/shopify-mcp-admin"],
|
|
166
|
+
"args": ["-y", "@anton.andrusenko/shopify-mcp-admin"],
|
|
164
167
|
"env": {
|
|
165
168
|
"SHOPIFY_STORE_URL": "your-store.myshopify.com",
|
|
166
169
|
"SHOPIFY_CLIENT_ID": "xxxxx",
|
|
@@ -247,7 +250,7 @@ Each tool can be converted to OpenAI function format:
|
|
|
247
250
|
|
|
248
251
|
## 🛠️ Available Tools
|
|
249
252
|
|
|
250
|
-
@anton.andrusenko/shopify-mcp-admin provides **
|
|
253
|
+
@anton.andrusenko/shopify-mcp-admin provides **54 tools** organized into 11 categories:
|
|
251
254
|
|
|
252
255
|
<details>
|
|
253
256
|
<summary><strong>📦 Product Management (7 tools)</strong></summary>
|
|
@@ -353,6 +356,52 @@ Each tool can be converted to OpenAI function format:
|
|
|
353
356
|
|
|
354
357
|
</details>
|
|
355
358
|
|
|
359
|
+
<details>
|
|
360
|
+
<summary><strong>🌍 Markets Management (5 tools)</strong></summary>
|
|
361
|
+
|
|
362
|
+
| Tool | Description |
|
|
363
|
+
|------|-------------|
|
|
364
|
+
| `create-market` | Create a new market for international selling |
|
|
365
|
+
| `get-market` | Retrieve market details and configuration |
|
|
366
|
+
| `update-market` | Update market name, currency, or enabled status |
|
|
367
|
+
| `delete-market` | Delete a market by ID |
|
|
368
|
+
| `list-markets` | List all markets with pagination |
|
|
369
|
+
|
|
370
|
+
</details>
|
|
371
|
+
|
|
372
|
+
<details>
|
|
373
|
+
<summary><strong>🌐 Web Presence Management (4 tools)</strong></summary>
|
|
374
|
+
|
|
375
|
+
| Tool | Description |
|
|
376
|
+
|------|-------------|
|
|
377
|
+
| `create-web-presence` | Create a web presence linking a market to domains/locales |
|
|
378
|
+
| `update-web-presence` | Update web presence default locale or domain settings |
|
|
379
|
+
| `delete-web-presence` | Delete a web presence by ID |
|
|
380
|
+
| `list-web-presences` | List all web presences with market associations |
|
|
381
|
+
|
|
382
|
+
</details>
|
|
383
|
+
|
|
384
|
+
<details>
|
|
385
|
+
<summary><strong>🗣️ Shop Locales (3 tools)</strong></summary>
|
|
386
|
+
|
|
387
|
+
| Tool | Description |
|
|
388
|
+
|------|-------------|
|
|
389
|
+
| `enable-shop-locale` | Enable a locale for your shop |
|
|
390
|
+
| `disable-shop-locale` | Disable and unpublish a shop locale |
|
|
391
|
+
| `list-shop-locales` | List all enabled shop locales |
|
|
392
|
+
|
|
393
|
+
</details>
|
|
394
|
+
|
|
395
|
+
<details>
|
|
396
|
+
<summary><strong>🌐 Translation Management (2 tools)</strong></summary>
|
|
397
|
+
|
|
398
|
+
| Tool | Description |
|
|
399
|
+
|------|-------------|
|
|
400
|
+
| `register-translations` | Register translations for products, collections, etc. |
|
|
401
|
+
| `remove-translations` | Remove translations for specific resources |
|
|
402
|
+
|
|
403
|
+
</details>
|
|
404
|
+
|
|
356
405
|
---
|
|
357
406
|
|
|
358
407
|
## 🔧 Troubleshooting
|
|
@@ -399,7 +448,7 @@ npm run inspect:config
|
|
|
399
448
|
|
|
400
449
|
MCP Inspector opens a web UI at `http://localhost:6274` where you can:
|
|
401
450
|
|
|
402
|
-
- 📋 Browse all
|
|
451
|
+
- 📋 Browse all 54 registered tools with schemas
|
|
403
452
|
- ▶️ Execute tools interactively and view results
|
|
404
453
|
- 🔍 Inspect JSON-RPC protocol messages
|
|
405
454
|
- 📊 Monitor server events in real-time
|