Add to Claude Code
0 addsAdd this MCP server to Claude Code.
Name: Shopify MCP
Merge into: ~/.claude/mcp.json under mcpServers
---
{
"mcpServers": {
"shopify": {
"command": "npx",
"args": ["-y", "@anthropic-community/mcp-shopify"],
"env": {
"SHOPIFY_STORE_URL": "https://your-store.myshopify.com",
"SHOPIFY_ACCESS_TOKEN": "<YOUR_ADMIN_API_TOKEN>"
}
}
}
}
// ── Setup ────────────────────────────────────────────────────────────────────
// 1. Create a custom app in your Shopify admin → Settings → Apps and sales channels
// 2. Grant the required Admin API scopes (read_products, write_products, read_orders, etc.)
// 3. Copy the Admin API access token
//
// ── Available tools ──────────────────────────────────────────────────────────
// list_products query products with filters (collection, vendor, status)
// get_product fetch full product details including variants and metafields
// update_product modify titles, descriptions, prices, and inventory
// list_orders retrieve orders with status filters
// get_inventory_levels check stock levels across locations
Paste into Claude Code to connect this MCP server.
How to add
Full guide →Click Add, then paste into Claude Code. Claude will connect the MCP server in your settings.
Target: .claude/mcp.json → mcpServers