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

タイトルで製品を探す

searchTitle

limit

get-products-by-collection

コレクション商品を入手する

collectionId

limit

get-products-by-ids

特定の商品を取得する

productIds

get-variants-by-ids

変異体の詳細を取得する

variantIds

顧客管理

道具

説明

主なパラメータ

get-customers

顧客データを取得する

limit

next

tag-customer

顧客にタグを追加する

customerId

tags

注文管理

道具

説明

主なパラメータ

get-orders

フィルターと並べ替えの順序

first

after

query

sortKey

get-order

単一注文の詳細を取得する

orderId

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

道具

説明

主なパラメータ

get-collections

ショップコレクションを取得する

limit

name

get-shop

基本的なショップの詳細を取得する

なし

get-shop-details

ショップの詳細情報を取得する

なし

割引管理

道具

説明

主なパラメータ

create-discount

割引コードを作成する

title

code

valueType

value

🏁 はじめに

  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

不和

私たちのサーバーに参加してください


Deploy Server
A
security – no known vulnerabilities
-
license - not tested
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
                  -
                  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 -
                  64
                  13
                  MIT License
                • -
                  security
                  -
                  license
                  -
                  quality
                  This MCP server connects clients with Shopify store data, enabling retrieval of product and customer information via exposed tools.
                  Last updated -
                  4
                  MIT License
                • A
                  security
                  -
                  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
                  2
                  MIT License
                  • Apple
                • -
                  security
                  -
                  license
                  -
                  quality
                  Enables interaction with Shopify stores through GraphQL API, providing tools for managing products, customers, orders, and more.
                  Last updated -
                  64
                  8
                  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