Skip to main content
Glama
kishimoto-banana

Shopify Python MCP Server

Shopify Python MCP Server

This is an MCP server that works with the Shopify API. By using this server, you can retrieve and manipulate Shopify product information from Claude Desktop.

function

tool

The server provides the following tools:

  1. list_products : Get a list of products

    • limit : Number of items to retrieve (maximum 250, default value 50)

  2. get_product : Get detailed product information

    • product_id : Product ID (required)

  3. create_product : Create a new product

    • title : Product name (required)

    • body_html : Product description (HTML format)

    • vendor : Vendor name

    • product_type : Product type

    • tags : tags (comma separated)

    • status : Status (active/draft/archived)

    • variants

    • options : options

    • images : Images

  4. update_product : Update a product

    • product_id : Product ID (required)

    • title : Product name

    • body_html : Product description (HTML format)

    • vendor : Vendor name

    • product_type : Product type

    • tags : tags (comma separated)

    • status : Status (active/draft/archived)

    • variants

    • options : options

    • images : Images

  5. delete_product : Delete a product

    • product_id : Product ID (required)

Related MCP server: Clind MCP Server

setting

Required Environment Variables

To use this server, you must set the following environment variables:

  • SHOPIFY_SHOP_URL : Your Shopify store URL (e.g. mystore.myshopify.com)

  • SHOPIFY_API_KEY : Shopify Admin API key

  • SHOPIFY_API_PASSWORD : Shopify Admin API password (Secret)

  • SHOPIFY_API_VERSION : Shopify API version (default: 2023-10)

Claude Desktop settings

If you are using Claude Desktop, add the following settings to claude_desktop_config.json:

macOS

Configuration file location: ~/Library/Application Support/Claude/claude_desktop_config.json

"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"
    }
  }
}

How to use

To use this server with Claude Desktop, call the tool as follows:

Get product list

商品一覧を取得してください。

Get detailed product information

商品ID 1234567890の詳細情報を取得してください。

Creating a new product

以下の情報で新しい商品を作成してください:
- 商品名: サンプル商品
- 説明: これはサンプル商品です。
- 価格: 1000円

Product Updates

商品ID 1234567890を以下の情報で更新してください:
- 商品名: 更新後の商品名
- 価格: 2000円

Remove a product

商品ID 1234567890を削除してください。

development

Installing dependencies

cd shopify-py-mcp
uv sync --dev --all-extras

debug

You can debug using MCP Inspector:

npx @modelcontextprotocol/inspector uv --directory /your_path/shopify-py-mcp run shopify-py-mcp

Build and publish

To prepare a package for distribution:

  1. Sync dependencies and update lock files:

uv sync
  1. Build the package:

uv build
  1. Published to PyPI:

uv publish

Note: You will need to set your PyPI credentials via environment variables or command flags:

  • Token: --token or UV_PUBLISH_TOKEN

  • Or username/password: --username / UV_PUBLISH_USERNAME and --password / UV_PUBLISH_PASSWORD

Install Server
A
license - permissive license
B
quality
D
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (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

  • F
    license
    Not graded
    quality
    Not graded
    maintenance
    A Shopify-focused MCP server that enables AI agents to manage store operations like order tracking, product discovery, and checkout link generation. It facilitates customer-facing interactions including shipping estimates and real-time inventory searches.
  • A
    license
    Not graded
    quality
    F
    maintenance
    A comprehensive MCP server for Shopify Admin API integration, enabling AI assistants to manage products, orders, customers, inventory, analytics, and more through natural language.
    34
    18
    MIT

View all related MCP servers

Related MCP Connectors

  • Hosted Amazon Seller and Vendor MCP server for Claude, ChatGPT, Cursor, Codex, Gemini, Copilot.

  • Shopify MCP Pack — wraps the Shopify Admin REST API (2024-01)

  • Hosted Amazon Seller Central and Amazon Ads MCP server for Claude, ChatGPT, Cursor, and agents.

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/kishimoto-banana/shopify-py-mcp'

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