Manage orders, products, customers, and inventory via Shopify Admin API
140+ deploysYour AI agent gets 5 capabilities in one connection. Deploy once, use from any client.
GET endpoints
list_orders
List orders with total_price, financial_status (paid/pending/refunded), fulfillment_status, line_items with variant info, and customer email. Filter by 'status' (open/closed/cancelled), 'created_at_min/max'.
https://{shop}.myshopify.com/admin/api/2024-01/orders.json?status=any&limit=50
list_products
List products with title, status (active/draft/archived), variants array (price, sku, inventory_quantity, weight), images, and tags. Filter by 'collection_id', 'product_type', or 'vendor'.
https://{shop}.myshopify.com/admin/api/2024-01/products.json?limit=50
list_customers
List customers with email, first/last name, orders_count, total_spent, verified_email flag, and default address. Filter by 'created_at_min/max' or 'updated_at_min/max'.
https://{shop}.myshopify.com/admin/api/2024-01/customers.json?limit=50
get_fulfillments
Get fulfillment details for an order: status (success/cancelled/error), tracking_number, tracking_url, tracking_company (UPS/FedEx/USPS), and shipped line_items.
https://{shop}.myshopify.com/admin/api/2024-01/orders/{order_id}/fulfillments.json
POST endpoints
create_product
Create a product with title, body_html (rich description), vendor, product_type, and tags. Add variants with price, sku, and inventory. Returns full product object with ID.
https://{shop}.myshopify.com/admin/api/2024-01/products.json
Connect Shopify to Claude Code with one command:
claude mcp add shopify https://datafaucet.dev/api/mcp/t/shopify{notion_token}) with your real credentialsNeed API keys? Try our free sandbox templates first to see MCP in action with zero setup.
Replace these placeholders with your real values before deploying:
{description}Your value{order_id}Resource identifier{shop}Your value{shopify_token}API settings page{title}Your value{vendor}Your valuePreview:
GET https://{shop}.myshopify.com/admin/api/2024-01/orders.json?status=any&limit=50 X-Shopify-Access-Token: {shopify_token}
claude mcp add shopify --url https://datafaucet.dev/api/mcp/t/shopify
Paste into your client's MCP configuration file · most users connect in under 60s
claude mcp add shopify --url https://datafaucet.dev/api/mcp/t/shopifyWhat your AI agent sees
I have access to 5 tools from Shopify: list_orders, list_products, list_customers, and 2 more.
“List orders with total_price, financial_status (paid/pending/refunded), fulfillment_status, line_items with variant info, and customer email. Filter by 'status' (open/closed/cancelled), 'created_at_min/max'.”
Calling list_orders... Done. Here are the results.
Try these prompts
“Show me today's orders sorted by value”
Copy“Check inventory levels for products below 10 units”
Copy“Create a flash sale with 30% off all items in the Summer collection”
CopyClick any prompt to copy, then paste into your AI client.