Skip to main content
Glama

ShopOps MCP

ShopifyおよびWooCommerceストアを管理するための、Model Context Protocol (MCP) を実装したAI駆動型サーバー。

License: MIT TypeScript MCP


機能

  • ShopifyおよびWooCommerce用のストアコネクタ

  • 在庫、価格、顧客、注文、製品パフォーマンス、レポートを網羅する11個のMCPツール

  • ストアの概要、在庫、最近の注文、トップ顧客を公開する4個のMCPリソース

  • 移動平均需要と安全在庫計算を用いた在庫予測。

  • RFMベースの顧客セグメンテーション(7つの異なるセグメント)。

  • マージンベースの最適化提案を含むデータ駆動型の価格分析。

  • 注文の異常/不正検知。

  • 製品パフォーマンスのABC分析。

  • 自動化された日次および週次レポート。

  • デュアルトランスポート:ローカル stdio および Streamable HTTP (MCPize)。

  • TypeScript、@modelcontextprotocol/sdk v1.29+、Zod v4。

  • 無料ティアに加え、25ドルおよび45ドルの有料プランを提供。


Related MCP server: Commerce-MCP

クイックスタート

# 1. Install the package
npm i shopops-mcp

# 2. Create a .env file (see Configuration section)
cp .env.example .env

# 3. Run the server (local stdio mode)
npx shopops-mcp run --transport stdio

# 4. Or start the HTTP endpoint (MCPize deployment)
npx shopops-mcp run --transport http --port 8080

サーバーは環境変数を読み取り、設定されたストアに接続し、MCPツールとリソースを公開します。


MCPツール

ツール

説明

store_connect

ShopifyまたはWooCommerceストアへの接続を確立し、認証情報を検証します。

inventory_status

現在の在庫レベル、バックオーダーフラグ、在庫不足アラートを返します。

inventory_forecast

移動平均需要と安全在庫バッファを使用して、将来の在庫要件を予測します。

pricing_analyze

価格弾力性レポートを生成し、価格が不適切な(安すぎる/高すぎる)SKUを特定します。

pricing_optimize

マージン分析、販売速度、設定可能な価格ルールに基づいて、最適な価格ポイントを提案します。

customers_segment

RFM分析を実行し、顧客を7つのセグメントのいずれかに割り当てます。

customers_churn

顧客の解約リスクをスコアリングし、リテンション(維持)のための推奨事項を提供します。

order_anomalies

パターン認識モデルを使用して、不正または誤りの可能性がある注文を検知します。

product_performance

ABC分析を実施し、製品クラスごとの貢献度メトリクスを返します。

report_daily

JSON/CSV形式の日次運用サマリー(売上、在庫、アラート)を生成します。

report_weekly

トレンドの可視化を含む週次パフォーマンスレポートを生成します。


MCPリソース

リソース

説明

store://overview

ストアのハイレベルなメトリクス:総売上、注文数、顧客数、粗利益。

store://inventory

手持ち在庫、予約済み在庫、予測される不足分を含む完全な在庫カタログ。

store://orders/recent

ステータス、合計金額、支払い方法を含む、直近100件の注文リスト。

store://customers/top

生涯価値(LTV)、購入頻度、直近の購入日によってランク付けされた上位50名の顧客。


設定

プロジェクトのルートに .env ファイルを作成します。以下の変数が必要です:

変数

必要な対象

説明

SHOPIFY_API_KEY

Shopify

プライベートアプリのAPIキー。

SHOPIFY_API_PASSWORD

Shopify

プライベートアプリのパスワード。

SHOPIFY_STORE_DOMAIN

Shopify

ストアドメイン(例:myshop.myshopify.com)。

WOOCOMMERCE_CONSUMER_KEY

WooCommerce

REST APIコンシューマーキー。

WOOCOMMERCE_CONSUMER_SECRET

WooCommerce

REST APIコンシューマーシークレット。

WOOCOMMERCE_STORE_URL

WooCommerce

ストアURL(例:https://example.com)。

MCP_PORT

HTTPトランスポート

Streamable HTTPエンドポイント用のポート(デフォルト 8080)。

MCP_LOG_LEVEL

すべて

ログの詳細度(error, warn, info, debug)。

MCP_PRICING_MODEL

価格ツール

価格戦略(margin_based)。

MCP_FORECAST_WINDOW_DAYS

在庫予測

予測する日数(デフォルト 30)。

オプションの変数:

変数

説明

MCP_ENABLE_ANONYMIZATION

true に設定すると、レポート内の個人を特定できるデータがマスクされます。

MCP_REPORT_S3_BUCKET

指定された場合、日次/週次レポートが指定のS3バケットにアップロードされます。


Proライセンス

ShopOpsは無料モードで提供されます。store_demo_seedstore_connectinventory_statuspricing_analyzecustomers_segmentproduct_performancereport_daily はオープンです。以下のツールにはProライセンスが必要です:

  • inventory_forecast — 移動平均需要予測 + 再発注点

  • pricing_optimize — 実用的な価格変更の推奨

  • customers_churn — 解約リスクスコアリング + リテンションの推奨

  • order_anomalies — 不正/異常検知

  • report_weekly — 週次トレンドレポート + AIインサイト

Proライセンスを購入する(29ユーロ、永久ライセンス、3台まで): https://automatiabcn.lemonsqueezy.com/buy/cbbe44f0-a146-4c65-88c8-71f371037758

または、Indie MCP Stack Bundle(69ユーロ、全4サーバー)を入手してください。

export LEMONSQUEEZY_LICENSE_KEY=YOUR-KEY-HERE

または、MCPクライアントの設定で:

{
  "mcpServers": {
    "shopops-mcp": {
      "command": "npx",
      "args": ["-y", "shopops-mcp-server"],
      "env": { "LEMONSQUEEZY_LICENSE_KEY": "YOUR-KEY-HERE" }
    }
  }
}

検証はローカルに24時間キャッシュされるため、初回実行後は完全にオフラインで動作可能です。


ライセンス

ShopOps MCPは MITライセンス の下でリリースされています。完全な条項については LICENSE を参照してください。


作成者: Automatia BCN

A
license - permissive license
A
quality
B
maintenance

Maintenance

Maintainers
Response time
1dRelease cycle
3Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

  • A
    license
    D
    quality
    D
    maintenance
    Enables natural-language control of e-commerce operations including product management, order processing, inventory tracking, customer service, content generation, and advertising analytics through 15 integrated MCP tools. Provides a local-first commerce automation solution with SQLite storage and extensible channel adapters for end-to-end online store workflows.
    15
    3
    MIT
  • F
    license
    Not graded
    quality
    C
    maintenance
    Hosted MCP server connecting Shopify, Klaviyo, GA4, Meta Ads, Google Ads, Xero, Gorgias and 20+ e-commerce data sources so AI assistants can answer merchant questions that span every source at once.

View all related MCP servers

Related MCP Connectors

  • Connect e-commerce and marketing data to AI assistants via MCP.

  • Co-purchase intelligence and merchant ops tools for AI shopping, ecommerce, and B2B agents

  • Manage your Jumpseller store with AI. Products, orders, customers, and more.

View all MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/automatiabcn/shopops-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server