Skip to main content
Glama

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)

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
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.

MCP server that integrates with Shopify API, allowing Claude Desktop users to retrieve and manipulate product information from Shopify stores.

  1. function
    1. tool
  2. setting
    1. Required Environment Variables
    2. Claude Desktop settings
  3. How to use
    1. Get product list
    2. Get detailed product information
    3. Creating a new product
    4. Product Updates
    5. Remove a product
  4. development
    1. Installing dependencies
    2. debug
    3. Build and publish

Related MCP Servers

  • -
    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 -
    4
    Python
    MIT License
  • A
    security
    A
    license
    A
    quality
    An MCP server implementation that integrates Claude with Salesforce, enabling natural language interactions with Salesforce data and metadata for querying, modifying, and managing objects and records.
    Last updated -
    7
    736
    78
    TypeScript
    MIT License
  • A
    security
    A
    license
    A
    quality
    An MCP server implementation that integrates Claude with Salesforce, enabling natural language interactions with Salesforce data and metadata for querying, modifying, and managing objects and records.
    Last updated -
    7
    514
    13
    TypeScript
    MIT License
    • Apple
    • Linux
  • A
    security
    A
    license
    A
    quality
    An MCP server that enables MySQL database integration with Claude. You can execute SQL queries and manage database connections.
    Last updated -
    2
    7
    Python
    MIT License
    • Apple

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

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