Shopify Py MCP Server

Shopify APIと連携するMCPサーバーです。このサーバーを使用することで、Claude DesktopからShopifyの商品情報を取得・操作することができます。

Local serverstdioPython

What is the Shopify Py MCP MCP server?

Connect Shopify Py MCP to Claude, Cursor or any other MCP client and it stops being a tab you switch to. Shopify APIと連携するMCPサーバーです。このサーバーを使用することで、Claude DesktopからShopifyの商品情報を取得・操作することができます。. The shopify py mcp mcp server is what makes that connection.

Installation

@modelcontextprotocol/inspector on npm is all you need. Most clients run it directly, so configuration is a few lines and a restart.

Available tools

The toolset is worth reading before you wire it up, because it tells you what the integration is really for:

  • limit — 取得する商品数(最大250、デフォルト値は50)
  • product_id — 商品ID(必須)
  • title — 商品名(必須)
  • body_html — 商品の説明(HTML形式)
  • vendor — ベンダー名
  • product_type — 商品タイプ
  • tags — タグ(カンマ区切り)
  • status — ステータス(active/draft/archived)
  • variants — バリエーション
  • options — オプション
  • images — 画像
  • SHOPIFY_SHOP_URL — ShopifyストアのURL(例: mystore.myshopify.com)

Credentials and setup notes

Configuration is passed through the environment: SHOPIFY_SHOP_URL, SHOPIFY_API_KEY, SHOPIFY_API_PASSWORD, SHOPIFY_API_VERSION, UV_PUBLISH_TOKEN. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

Worth knowing first

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • With 14 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Shopify Py MCP.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Where it fits

Among the payments and commerce options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Shopify Py MCP's toolset — limit, product_id, title and 11 more — is a fair guide to whether it matches your workflow. It is maintained by kishimoto-banana; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Available tools

ToolWhat it does
limit取得する商品数(最大250、デフォルト値は50)
product_id商品ID(必須)
title商品名(必須)
body_html商品の説明(HTML形式)
vendorベンダー名
product_type商品タイプ
tagsタグ(カンマ区切り)
statusステータス(active/draft/archived)
variantsバリエーション
optionsオプション
images画像
SHOPIFY_SHOP_URLShopifyストアのURL(例: mystore.myshopify.com)
SHOPIFY_API_KEYShopify Admin APIのAPIキー
SHOPIFY_API_PASSWORDShopify Admin APIのAPIパスワード(Secret)

How to install the Shopify Py MCP MCP server

"mcpServers": {
  "shopify-py-mcp": {
    "command": "uv",
    "args": [
      "--directory",
      "/your_path/shopify-py-mcp",
      "run",
      "shopify-py-mcp"
    ],
    "env": {
      "SHOPIFY_SHOP_URL": "your-store.myshopify.com",
      "SHOPIFY_API_KEY": "your-api-key",
      "SHOPIFY_API_PASSWORD": "your-api-password",
      "SHOPIFY_API_VERSION": "2023-10"
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
SHOPIFY_SHOP_URLEndpoint or connection string the server talks to.Yes
SHOPIFY_API_KEYCredential the server authenticates with.Yes
SHOPIFY_API_PASSWORDConfiguration value read at startup.Optional
SHOPIFY_API_VERSIONConfiguration value read at startup.Optional
UV_PUBLISH_TOKENCredential the server authenticates with.Yes

Example prompts to try

  • Use Shopify Py MCP to limit.
  • Use Shopify Py MCP to product id.
  • Use Shopify Py MCP to title.

Frequently asked questions

It connects Shopify Py MCP to MCP-compatible AI assistants such as Claude and Cursor, exposing 14 tools (limit, product_id, title, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Shopify Py MCP directly.