shopify-mcp

shopify-mcp is a skill for Claude Code from khadinakbarlabs/shopify-app-builder. It costs 93 tokens per session (5,216 once invoked), scanned A, original, MIT.

A guide to connecting Claude or another coding assistant to Shopify through Model Context Protocol, a standard way for AI tools to access services.

In plain words
What is it for?
It supports configuring Shopify developer, storefront, and custom MCP servers for Shopify data, API schemas, development stores, testing, and commerce workflows.
Why use it?
It explains the available connection patterns and setup details instead of requiring developers to design the integration from scratch.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: reads .claude/ paths; mentions Claude Code.

Part of the shopify-app-builder plugin — 32 skills, 9 commands, 5 agents shipped together

Good fit It supports configuring Shopify developer, storefront, and custom MCP servers for Shopify data, API schemas, development stores, testing, and commerce workflows.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/khadinakbarlabs/shopify-app-builder/shopify-mcp
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add khadinakbarlabs/shopify-app-builder --skill shopify-mcp
Clone the repo
git clone --depth 1 https://github.com/khadinakbarlabs/shopify-app-builder

Made for: Claude Code.

Or install shopify-app-builder, the plugin that ships this one along with the rest of its 32 skills, 9 commands, 5 agents.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for shopify-mcp

README.md
[![agentmods](https://agentmods.dev/badge/skills/khadinakbarlabs/shopify-app-builder/shopify-mcp/github.svg)](https://agentmods.dev/skills/khadinakbarlabs/shopify-app-builder/shopify-mcp)
Your own site
<a href="https://agentmods.dev/skills/khadinakbarlabs/shopify-app-builder/shopify-mcp"><img src="https://agentmods.dev/badge/skills/khadinakbarlabs/shopify-app-builder/shopify-mcp/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for shopify-mcp

Your own site · 80×15
<a href="https://agentmods.dev/skills/khadinakbarlabs/shopify-app-builder/shopify-mcp"><img src="https://agentmods.dev/badge/skills/khadinakbarlabs/shopify-app-builder/shopify-mcp.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 93 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 5,216 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00093 $0.05216
Opus 5 $0.00046 $0.02608
Sonnet 5 $0.00019 $0.01043
Haiku 4.5 $0.00009 $0.00522

Measured 10d ago against content hash d68b653a96b3, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

shopify-mcp scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/shopify-mcp/SKILL.md · 701 lines

How it starts

The opening of the file, as written. The whole thing — 701 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Shopify MCP Integration Guide

Model Context Protocol (MCP) servers connect Claude to Shopify data and operations. There are three deployment patterns: Shopify Dev MCP (developer-centric), Storefront MCP (merchant-centric), and custom MCPs (specialized workflows). This guide covers setup, configuration, implementation patterns, and agentic commerce use cases.

Shopify Dev MCP: Developer Tools for Claude Code

Shopify Dev MCP is a read-only developer toolkit integrated into Claude Code. It provides access to admin APIs, schema introspection, development store management, and app testing utilities without building a custom MCP.

Installation and Setup

The Shopify Dev MCP is installed via command-line setup:

npx -y @shopify/dev-mcp setup

This command:

  1. Prompts for Shopify organization/store selection
  2. Creates a development app or reuses existing one
  3. Stores authentication tokens securely in system keychain
  4. Registers the MCP server in ~/.claude.json/mcpServers
  5. Restarts Claude Code to load the new MCP

No additional configuration is required post-setup. The MCP automatically handles token refresh and scope validation.

Claude Code Configuration

After setup, ~/.claude.json/mcpServers contains:

{
  "mcpServers": {
    "shopify": {
      "command": "npx",
      "args": ["-y", "@shopify/dev-mcp", "run"],
      "env": {
        "SHOPIFY_AUTH_TOKEN": "shpat_...",
        "SHOPIFY_STORE": "dev-store-name.myshopify.com",
        "SHOPIFY_ORG_ID": "gid://shopify/Organization/12345"
      }
    }
  }
}

Manual configuration is unnecessary unless you need environment-specific tokens or custom server paths. For advanced setups (air-gapped networks, custom HTTP proxies), edit the env dict directly.

Dev MCP Capabilities

The Shopify Dev MCP provides these read-only tools:

Admin API Query Tool

  • Execute GraphQL queries against the API version configured for the connected development store
  • Full schema support (Products, Orders, Customers, Fulfillments, Inventory, etc.)
  • Automatic scope validation (app must have required scopes)
  • Response size limit: 5MB per query
  • Query complexity limit: 100 points (Admin API default)

Read the full file on GitHub · 701 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 10d ago First seen · 701 lines · 93 tokens per session scan A d68b653a96b3

Subscribe to this mod's changes

shopify-mcp is a skill published in the GitHub repository khadinakbarlabs/shopify-app-builder (1 stars, last pushed 1mo ago), licensed MIT. It adds 93 tokens to every session and 5,216 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.