@anton.andrusenko/shopify-mcp-admin 0.2.0 → 0.3.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 +31 -0
  2. package/dist/index.js +1081 -681
  3. package/package.json +12 -2
package/README.md CHANGED
@@ -5,6 +5,7 @@
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)
7
7
  [![Node.js Version](https://img.shields.io/badge/node-%3E%3D20.0.0-brightgreen)](https://nodejs.org/)
8
+ [![codecov](https://codecov.io/gh/AntonAndrusenko/shopify-mcp-admin/graph/badge.svg)](https://codecov.io/gh/AntonAndrusenko/shopify-mcp-admin)
8
9
 
9
10
  ---
10
11
 
@@ -378,6 +379,33 @@ DEBUG=1 npx @anton.andrusenko/shopify-mcp-admin
378
379
  LOG_LEVEL=debug npx @anton.andrusenko/shopify-mcp-admin
379
380
  ```
380
381
 
382
+ ### MCP Inspector
383
+
384
+ Use [MCP Inspector](https://github.com/modelcontextprotocol/inspector) to visually test and debug the server:
385
+
386
+ ```bash
387
+ # Test production build
388
+ npm run build
389
+ npm run inspect
390
+
391
+ # Development mode (no build needed)
392
+ npm run inspect:dev
393
+
394
+ # With saved configuration
395
+ cp mcp-inspector.example.json mcp-inspector.json
396
+ # Edit mcp-inspector.json with your credentials
397
+ npm run inspect:config
398
+ ```
399
+
400
+ MCP Inspector opens a web UI at `http://localhost:6274` where you can:
401
+
402
+ - 📋 Browse all 40 registered tools with schemas
403
+ - ▶️ Execute tools interactively and view results
404
+ - 🔍 Inspect JSON-RPC protocol messages
405
+ - 📊 Monitor server events in real-time
406
+
407
+ > **Tip:** Use `npm run inspect:dev` during development for instant feedback without rebuilding.
408
+
381
409
  ### FAQ
382
410
 
383
411
  **Q: Can I connect to multiple stores?**
@@ -476,8 +504,11 @@ npm run dev
476
504
  | `npm run dev` | Start development server with hot reload |
477
505
  | `npm run build` | Build for production |
478
506
  | `npm run test` | Run unit tests |
507
+ | `npm run test:coverage` | Run tests with coverage report |
479
508
  | `npm run lint` | Run Biome linter |
480
509
  | `npm run lint:fix` | Auto-fix linting issues |
510
+ | `npm run inspect` | Open MCP Inspector with production build |
511
+ | `npm run inspect:dev` | Open MCP Inspector in development mode |
481
512
 
482
513
  ### Pull Request Guidelines
483
514