Skip to main content
Glama

Shopify MCP Server

🚀 概要

Shopify MCPサーバーは、モデルコンテキストプロトコルを通じて、アプリケーションとShopifyエコシステムをつなぐ強力な架け橋となります。Shopifyの管理APIへのシンプルなAPI呼び出しで、商品、顧客、注文などを簡単に管理できます。

📋 目次

📥 インストール

希望するインストール方法を選択してください:

方法説明書
鍛冶屋
グラマ.ai
国立博物館npm install shopify-mcp-server

✨ 特徴

  • 🛍️ 包括的な製品管理- 製品データの検索、取得、管理
  • 👥 顧客データアクセス- 顧客情報を取得し、タグを管理する
  • 📦 高度な注文処理- 注文のフィルタリング、並べ替え、管理が簡単
  • ⚡ GraphQLの直接統合- Shopifyの管理APIに直接接続
  • 🛡️ 堅牢なエラー処理- トラブルシューティングのための明確なフィードバック

🧰 利用可能なツール

製品管理

道具説明主なパラメータ
get-productsタイトルで製品を探すsearchTitlelimit
get-products-by-collectionコレクション商品を入手するcollectionIdlimit
get-products-by-ids特定の商品を取得するproductIds
get-variants-by-ids変異体の詳細を取得するvariantIds

顧客管理

道具説明主なパラメータ
get-customers顧客データを取得するlimitnext
tag-customer顧客にタグを追加するcustomerIdtags

注文管理

道具説明主なパラメータ
get-ordersフィルターと並べ替えの順序firstafterquerysortKey
get-order単一注文の詳細を取得するorderId

ショップ&コレクションツール

道具説明主なパラメータ
get-collectionsショップコレクションを取得するlimitname
get-shop基本的なショップの詳細を取得するなし
get-shop-detailsショップの詳細情報を取得するなし

割引管理

道具説明主なパラメータ
create-discount割引コードを作成するtitlecodevalueTypevalue

🏁 はじめに

  1. パッケージをインストールする
    npm install shopify-mcp-server
  2. 環境変数を設定する
    SHOPIFY_ACCESS_TOKEN=your_token MYSHOPIFY_DOMAIN=your-store.myshopify.com
  3. サーバーを初期化する
    require('shopify-mcp-server').start();
  4. 最初のAPI呼び出しを実行する
    const products = await shopifyMcpServer.tools.getProducts({ limit: 10 }); console.log(products);

💡 ユースケース

  • Eコマースプラットフォームの統合- システム間で製品と注文を同期
  • カスタム管理ダッシュボード- ビジネスニーズに合わせてカスタマイズされたインターフェースを構築
  • 注文の自動化- 自動注文処理のワークフローを設定する
  • マルチチャネル販売管理- すべての販売チャネルにわたって在庫を管理

🔧 セットアップガイド

Shopifyアクセストークンの取得

  1. Shopify管理画面から、 「設定」 > **「アプリと販売チャネル」**に移動します。
  2. 「アプリを開発」 > **「アプリを作成」**をクリックします
  3. アプリに名前を付けます(例:「Shopify MCP Server」)
  4. API スコープを構成します。
    • read_productswrite_products
    • read_customerswrite_customers
    • read_orderswrite_orders
  5. 「保存し**アプリをインストール」**をクリック
  6. 管理APIアクセストークンをコピーする

**セキュリティに関する注意:**アクセストークンは安全に保管してください。バージョン管理にコミットしないでください。

Claude Desktopでの使用

claude_desktop_config.jsonに追加します:

{ "mcpServers": { "shopify": { "command": "npx", "args": ["-y", "shopify-mcp-server"], "env": { "SHOPIFY_ACCESS_TOKEN": "<TOKEN>", "MYSHOPIFY_DOMAIN": "<SHOP>.myshopify.com" } } } }

👨‍💻 開発

# Clone the repository git clone https://github.com/your-username/shopify-mcp-server.git # Install dependencies cd shopify-mcp-server npm install # Set up environment variables # Create a .env file with your Shopify credentials # Build and test npm run build npm test

🤝 コミュニティ

リソースリンク
GitHubディスカッション会話に参加する
問題トラッカーバグを報告する
ツイッター@rezajafar
不和私たちのサーバーに参加してください

You must be authenticated.

A
security – no known vulnerabilities
A
license - permissive license
A
quality - confirmed to work

remote-capable server

The server can be hosted and run remotely because it primarily relies on remote services or has no dependency on the local environment.

GraphQL API を介して Shopify ストア データとのやり取りを可能にし、堅牢なエラー処理を備えた製品、顧客、注文、割引などを管理するためのツールを提供します。

  1. 📋 目次
    1. 📥 インストール
      1. ✨ 特徴
        1. 🧰 利用可能なツール
          1. 製品管理
          2. 顧客管理
          3. 注文管理
          4. ショップ&コレクションツール
          5. 割引管理
        2. 🏁 はじめに
          1. 💡 ユースケース
            1. 🔧 セットアップガイド
              1. Shopifyアクセストークンの取得
              2. Claude Desktopでの使用
            2. 👨‍💻 開発
              1. 🤝 コミュニティ

                Related MCP Servers

                • A
                  security
                  A
                  license
                  A
                  quality
                  Enables interaction with Shopify store data using the GraphQL API, supporting product, customer, and order management with comprehensive error handling.
                  Last updated -
                  15
                  76
                  7
                  TypeScript
                  MIT License
                • -
                  security
                  A
                  license
                  -
                  quality
                  This MCP server connects clients with Shopify store data, enabling retrieval of product and customer information via exposed tools.
                  Last updated -
                  2
                  Python
                  MIT License
                • A
                  security
                  A
                  license
                  A
                  quality
                  MCP server that integrates with Shopify API, allowing Claude Desktop users to retrieve and manipulate product information from Shopify stores.
                  Last updated -
                  5
                  Python
                  MIT License
                  • Apple
                • -
                  security
                  A
                  license
                  -
                  quality
                  Enables interaction with Shopify stores through GraphQL API, providing tools for managing products, customers, orders, and more.
                  Last updated -
                  76
                  6
                  TypeScript
                  MIT License

                View all related MCP servers

                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/rezapex/shopify-mcp-server-main'

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