@anton.andrusenko/shopify-mcp-admin 0.5.0 → 0.7.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.
Files changed (3) hide show
  1. package/README.md +55 -6
  2. package/dist/index.js +5364 -3228
  3. 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 54 powerful tools
3
+ > 🛍️ **MCP Server for Shopify Admin API** — Enable AI agents to manage Shopify stores with 71 powerful tools
4
4
 
5
5
  [![npm version](https://badge.fury.io/js/@anton.andrusenko%2Fshopify-mcp-admin.svg)](https://www.npmjs.com/package/@anton.andrusenko/shopify-mcp-admin)
6
6
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
@@ -11,7 +11,7 @@
11
11
 
12
12
  ## ✨ Features
13
13
 
14
- - 🛠️ **54 MCP Tools** — Complete store management: products, inventory, collections, pages, blogs, redirects, markets, locales & translations
14
+ - 🛠️ **71 MCP Tools** — Complete store management: products, inventory, collections, pages, blogs, redirects, metafields, 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
@@ -250,7 +250,16 @@ Each tool can be converted to OpenAI function format:
250
250
 
251
251
  ## 🛠️ Available Tools
252
252
 
253
- @anton.andrusenko/shopify-mcp-admin provides **54 tools** organized into 11 categories:
253
+ @anton.andrusenko/shopify-mcp-admin provides **71 tools** organized into 16 categories:
254
+
255
+ <details>
256
+ <summary><strong>🏪 Store Info (1 tool)</strong></summary>
257
+
258
+ | Tool | Description |
259
+ |------|-------------|
260
+ | `get-store-info` | Get basic store information (name, domain, plan, currency, timezone, email) |
261
+
262
+ </details>
254
263
 
255
264
  <details>
256
265
  <summary><strong>📦 Product Management (7 tools)</strong></summary>
@@ -268,7 +277,7 @@ Each tool can be converted to OpenAI function format:
268
277
  </details>
269
278
 
270
279
  <details>
271
- <summary><strong>🏷️ Metafields (3 tools)</strong></summary>
280
+ <summary><strong>🏷️ Product Metafields (3 tools)</strong></summary>
272
281
 
273
282
  | Tool | Description |
274
283
  |------|-------------|
@@ -278,6 +287,42 @@ Each tool can be converted to OpenAI function format:
278
287
 
279
288
  </details>
280
289
 
290
+ <details>
291
+ <summary><strong>📄 Page Metafields (3 tools)</strong></summary>
292
+
293
+ | Tool | Description |
294
+ |------|-------------|
295
+ | `get-page-metafields` | Get all metafields for a page |
296
+ | `set-page-metafields` | Set or update metafields on a page |
297
+ | `delete-page-metafields` | Delete specific metafields from a page |
298
+
299
+ </details>
300
+
301
+ <details>
302
+ <summary><strong>📝 Blog & Article Metafields (6 tools)</strong></summary>
303
+
304
+ | Tool | Description |
305
+ |------|-------------|
306
+ | `get-blog-metafields` | Get all metafields for a blog |
307
+ | `set-blog-metafields` | Set or update metafields on a blog |
308
+ | `delete-blog-metafields` | Delete specific metafields from a blog |
309
+ | `get-article-metafields` | Get all metafields for an article |
310
+ | `set-article-metafields` | Set or update metafields on an article |
311
+ | `delete-article-metafields` | Delete specific metafields from an article |
312
+
313
+ </details>
314
+
315
+ <details>
316
+ <summary><strong>📁 Collection Metafields (3 tools)</strong></summary>
317
+
318
+ | Tool | Description |
319
+ |------|-------------|
320
+ | `get-collection-metafields` | Get all metafields for a collection |
321
+ | `set-collection-metafields` | Set or update metafields on a collection |
322
+ | `delete-collection-metafields` | Delete specific metafields from a collection |
323
+
324
+ </details>
325
+
281
326
  <details>
282
327
  <summary><strong>📁 Collection Management (7 tools)</strong></summary>
283
328
 
@@ -305,13 +350,17 @@ Each tool can be converted to OpenAI function format:
305
350
  </details>
306
351
 
307
352
  <details>
308
- <summary><strong>🔀 URL Redirects (3 tools)</strong></summary>
353
+ <summary><strong>🔀 URL Redirects (7 tools)</strong></summary>
309
354
 
310
355
  | Tool | Description |
311
356
  |------|-------------|
312
357
  | `create-redirect` | Create a URL redirect (301/302) |
313
358
  | `delete-redirect` | Delete a URL redirect |
314
359
  | `list-redirects` | List all URL redirects |
360
+ | `bulk-delete-redirects` | Delete multiple redirects by ID |
361
+ | `bulk-delete-redirects-by-search` | Delete redirects matching a search query |
362
+ | `import-redirects` | Import redirects from CSV URL |
363
+ | `submit-redirect-import` | Submit a redirect import job for processing |
315
364
 
316
365
  </details>
317
366
 
@@ -448,7 +497,7 @@ npm run inspect:config
448
497
 
449
498
  MCP Inspector opens a web UI at `http://localhost:6274` where you can:
450
499
 
451
- - 📋 Browse all 54 registered tools with schemas
500
+ - 📋 Browse all 71 registered tools with schemas
452
501
  - ▶️ Execute tools interactively and view results
453
502
  - 🔍 Inspect JSON-RPC protocol messages
454
503
  - 📊 Monitor server events in real-time