🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@codespar/mcp-shopify

Package Overview
Dependencies
Maintainers
2
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@codespar/mcp-shopify

MCP server for Shopify — global ecommerce platform Admin REST API (orders, products, customers, inventory, fulfillments, webhooks)

latest
npmnpm
Version
0.2.2
Version published
Maintainers
2
Created
Source

@codespar/mcp-shopify

MCP server for Shopify — global ecommerce platform Admin REST API.

Shopify is the global DTC standard and dominant across LatAm for brands operating internationally (complementary to Nuvemshop/Tiendanube for regional-only merchants, also in this catalog). Agents building merchant tools — restocking, refund automation, marketing campaigns, fulfillment orchestration — integrate directly with the Admin API rather than through a reseller.

Tools (28)

ToolPurpose
list_ordersList orders with optional filters.
get_orderGet a single order by ID with full detail.
create_orderCreate a new order.
update_orderUpdate an existing order (tags, note, email, shipping_address, metafields, etc).
cancel_orderCancel an order.
list_productsList products with optional filters.
get_productGet a single product by ID including all variants and images.
create_productCreate a new product with variants, options, and images.
update_productUpdate an existing product's fields, variants, or images.
list_customersList customers with optional query filter.
create_customerCreate a new customer record.
adjust_inventoryAdjust the available inventory for a specific inventory_item at a specific location by a delta (positive to...
create_fulfillmentCreate a fulfillment for an order (mark line items as shipped, attach tracking number and carrier).
update_fulfillment_trackingUpdate the tracking number, tracking company, or tracking URL on an existing fulfillment (post-ship trackin...
create_draft_orderCreate a draft order (invoice-style quote).
complete_draft_orderConvert a draft order into a real order.
create_price_ruleCreate a price rule (the policy that governs discounts — percentage/fixed amount, prerequisites, entitlemen...
create_discount_codeCreate a discount code tied to an existing price rule (the customer-facing string like 'SUMMER20').
create_smart_collectionCreate a smart collection — an automated collection populated by rules (e.g.
create_custom_collectionCreate a custom collection — a manually curated collection.
create_metafieldAttach a metafield (custom typed field) to a resource (shop, product, variant, customer, order, collection,...
create_variantAdd a new variant to an existing product (size/color/SKU permutation with its own price and inventory).
update_variantUpdate an existing product variant's price, SKU, barcode, options, weight, or inventory policy.
list_transactionsList all payment transactions for an order (authorizations, captures, sales, refunds, voids) including gate...
list_abandoned_checkoutsList abandoned checkouts (carts where the customer entered contact info but did not complete checkout).
list_locationsList all fulfillment locations (physical stores, warehouses, 3PLs).
create_refundRefund one or more line items on an order.
register_webhookRegister a webhook subscription for a Shopify event topic (orders/create, orders/paid, products/update, app...

Install

npm install @codespar/mcp-shopify

Environment

SHOPIFY_SHOP="acme"               # subdomain (acme.myshopify.com)
SHOPIFY_ACCESS_TOKEN="shpat_..."  # Admin API access token (secret)
SHOPIFY_API_VERSION="2024-01"     # Optional. Defaults to 2024-01.

Authentication

Private/custom app access token sent as header on every request:

X-Shopify-Access-Token: <SHOPIFY_ACCESS_TOKEN>

Create a custom app in Shopify admin → Settings → Apps and sales channels → Develop apps, grant the Admin API scopes you need (read/write orders, products, customers, inventory, fulfillments), and install to generate the token.

Run

# stdio (default — for Claude Desktop, Cursor, etc)
npx @codespar/mcp-shopify

# HTTP (for server-to-server testing)
MCP_HTTP=true MCP_PORT=3000 npx @codespar/mcp-shopify

API surface

Uses the Shopify Admin REST API at https://{shop}.myshopify.com/admin/api/{version}. Default version is 2024-01 (stable). Override with SHOPIFY_API_VERSION when newer stable versions ship.

Enterprise

Need governance, budget limits, and audit trails for agent payments? CodeSpar Enterprise adds policy engine, payment routing, and compliance templates on top of these MCP servers.

License

MIT

Keywords

mcp

FAQs

Package last updated on 22 Jun 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts