Shopify Mcp Server — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Shopify Mcp Server (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
A Model Context Protocol (MCP) server that lets AI agents (Claude, GPT, etc.) manage Shopify stores. Products, orders, inventory, customers, and analytics — all through natural language.
Connect your Shopify store to Claude Desktop, Cursor, or any MCP-compatible AI tool and manage your store with natural language:
| Tool | Description |
|---|---|
list_products | List products with filters (title, type, status) |
get_product | Get detailed product info |
create_product | Create new products with variants |
update_product | Update product details |
delete_product | Remove a product |
count_products | Get total product count |
| Tool | Description |
|---|---|
list_orders | List orders with status/date filters |
get_order | Get full order details |
count_orders | Count orders by status |
| Tool | Description |
|---|---|
list_inventory | View inventory levels |
adjust_inventory | Adjust stock quantities |
list_locations | List warehouse locations |
| Tool | Description |
|---|---|
list_customers | Search and list customers |
count_customers | Get total customer count |
| Tool | Description |
|---|---|
get_shop_info | Store info (plan, currency, etc.) |
store_overview | Full dashboard with stats |
Go to your Shopify Admin > Settings > Apps and sales channels > Develop apps > Create an app > Configure Admin API scopes.
Required scopes:
read_products, write_productsread_ordersread_inventory, write_inventoryread_customersnpm install -g @xmqywxkris/shopify-store-mcpOr use directly with npx:
npx @xmqywxkris/shopify-store-mcpAdd to your claude_desktop_config.json:
{
"mcpServers": {
"shopify": {
"command": "npx",
"args": ["-y", "@xmqywxkris/shopify-store-mcp"],
"env": {
"SHOPIFY_STORE_DOMAIN": "your-store.myshopify.com",
"SHOPIFY_ACCESS_TOKEN": "shpat_your_token_here"
}
}
}
}claude mcp add shopify -- npx -y shopify-store-mcp \
--env SHOPIFY_STORE_DOMAIN=your-store.myshopify.com \
--env SHOPIFY_ACCESS_TOKEN=shpat_your_token| Variable | Required | Description |
|---|---|---|
SHOPIFY_STORE_DOMAIN | Yes | Your store domain (e.g., mystore.myshopify.com) |
SHOPIFY_ACCESS_TOKEN | Yes | Admin API access token |
SHOPIFY_API_VERSION | No | API version (default: 2025-01) |
List all active products:
"Show me all active products in my store"
Create a product with variants:
"Create a product called 'Classic Hoodie' with sizes S, M, L, XL at $49.99"
Inventory management:
"Check inventory for all products at the main warehouse and flag anything below 10 units"
Store analytics:
"Give me a store overview — total products, recent orders, and revenue this month"
Bulk operations:
"Update all products in the 'Winter' collection to have a 20% discount"
git clone https://github.com/xmqywx/shopify-store-mcp.git
cd shopify-store-mcp
npm install
npm run devInstall directly in Cursor IDE:
Or manually: clone this repo and open it in Cursor — the plugin auto-discovers.
MIT
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.