@anton.andrusenko/shopify-mcp-admin 2.0.1 → 2.0.3

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 (2) hide show
  1. package/README.md +49 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -428,6 +428,52 @@ cd ~/LibreChat && git pull && docker compose pull && docker compose up -d
428
428
 
429
429
  > 📄 **Advanced Configuration:** See `librechat.yaml.example` for multi-store setups, role presets, and HTTP/SSE transport modes.
430
430
 
431
+ ### Production Deployment (Admin-Only Access)
432
+
433
+ LibreChat can be deployed alongside your production MCP server with admin-only access. The deployment is integrated into the main workflow:
434
+
435
+ 1. **Configure LibreChat** in your `.env.deploy` file:
436
+ ```bash
437
+ LIBRECHAT_ADMIN_EMAILS=admin@example.com,admin2@example.com
438
+ LIBRECHAT_DOMAIN=chat.shopify-mcp.com
439
+ ```
440
+
441
+ 2. **Deploy with the main script** — LibreChat is automatically configured:
442
+ ```bash
443
+ ./DEPLOY-NOW.sh
444
+ ```
445
+
446
+ The integrated deployment will:
447
+ - ✅ Configure admin-only access (email whitelist)
448
+ - ✅ Set up MCP server connection with your production API key
449
+ - ✅ Configure AI model endpoints (OpenAI, Anthropic, Google, Groq)
450
+ - ✅ Users provide their own LLM API keys in the UI
451
+
452
+ 📖 **Full Guide**: See [LibreChat Production Deployment](./docs/LIBRECHAT-PRODUCTION-DEPLOYMENT.md)
453
+ 📖 **Model Setup**: See [LibreChat Models Setup](./docs/LIBRECHAT-MODELS-SETUP.md)
454
+
455
+ ### Testing with Remote Production Server
456
+
457
+ To connect LibreChat to your **remote production MCP server** (instead of running locally):
458
+
459
+ 1. **Get API Key**: Visit your production dashboard (e.g., `https://shopify-mcp.com/app`) → Settings → API Keys
460
+ 2. **Configure LibreChat**: Update `librechat.yaml` with production server URL:
461
+
462
+ ```yaml
463
+ mcpServers:
464
+ shopify-mcp-production:
465
+ type: streamable-http
466
+ url: https://shopify-mcp.com/mcp
467
+ headers:
468
+ Authorization: "Bearer sk_live_YOUR_API_KEY_HERE"
469
+ timeout: 60000
470
+ serverInstructions: true
471
+ ```
472
+
473
+ 3. **Restart LibreChat**: `docker compose restart api`
474
+
475
+ 📖 **Full Guide**: See [LibreChat Production Testing Guide](docs/LIBRECHAT-PRODUCTION-TESTING.md) for detailed instructions, troubleshooting, and security best practices.
476
+
431
477
  ---
432
478
 
433
479
  ## 🌐 OpenAI/ChatGPT Integration
@@ -1354,6 +1400,9 @@ The guide includes:
1354
1400
  - **Database Setup**: Prisma migrations and backup strategy
1355
1401
  - **Staging Environment**: Separate staging deployment configuration
1356
1402
  - **Monitoring**: Sentry error tracking and uptime monitoring setup
1403
+ - **LibreChat Integration**: Automatically deployed with admin-only access (optional)
1404
+
1405
+ **Quick Deploy**: Run `./DEPLOY-NOW.sh` - LibreChat is included automatically if configured in `.env.deploy`
1357
1406
 
1358
1407
  ### Production URLs
1359
1408
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@anton.andrusenko/shopify-mcp-admin",
3
- "version": "2.0.1",
3
+ "version": "2.0.3",
4
4
  "description": "MCP server for Shopify Admin API - enables AI agents to manage Shopify stores with 79 tools for products, inventory, collections, content, SEO, metafields, markets & translations",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",