npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@apexradius/shopify-mcp

v1.0.0

Published

A Model Context Protocol (MCP) server for Shopify — giving Claude direct access to your store's products, orders, customers, collections, metafields, and themes.

Readme

@apexradius/shopify-mcp

Excellence in every detail.

A Model Context Protocol (MCP) server for Shopify — giving Claude and other AI assistants direct, structured access to your store's data.

Features

| Category | Tools | |---|---| | Shop | Get store info | | Products | List, get, create, update, count | | Orders | List, get, update, cancel, count | | Customers | List, get, search, count | | Collections | List, get, list products in collection | | Metafields | List, set, delete (for any resource) | | Themes | List, get, list/get/update assets | | GraphQL | Raw GraphQL query/mutation passthrough |

Requirements

  • Node.js 18+
  • A Shopify store with an Admin API access token

Installation

npm install -g @apexradius/shopify-mcp

Or run directly with npx:

npx @apexradius/shopify-mcp

Configuration

The server is configured via environment variables:

| Variable | Required | Description | |---|---|---| | SHOPIFY_SHOP_DOMAIN | Yes | Your store domain (e.g. my-store.myshopify.com) | | SHOPIFY_ACCESS_TOKEN | Yes | Admin API access token | | SHOPIFY_API_VERSION | No | API version (default: 2025-01) |

Getting your access token

  1. Go to your Shopify Admin → SettingsApps and sales channels
  2. Click Develop appsCreate an app
  3. Under Configuration, grant the API scopes you need
  4. Under API credentials, install the app and copy the Admin API access token

Recommended scopes: read_products, write_products, read_orders, write_orders, read_customers, read_inventory, read_themes, write_themes, read_metaobjects, write_metaobjects

Claude Desktop / Claude Code Setup

Add to your ~/.mcp.json or Claude Desktop config:

{
  "mcpServers": {
    "shopify": {
      "command": "npx",
      "args": ["-y", "@apexradius/shopify-mcp"],
      "env": {
        "SHOPIFY_SHOP_DOMAIN": "your-store.myshopify.com",
        "SHOPIFY_ACCESS_TOKEN": "shpat_xxxxxxxxxxxxxxxxxxxx"
      }
    }
  }
}

Available Tools

Shop

  • shopify_get_shop — Get store info (name, email, currency, timezone, plan)

Products

  • shopify_list_products — List products with filters (status, vendor, type, title)
  • shopify_get_product — Get product by ID
  • shopify_create_product — Create a new product
  • shopify_update_product — Update title, description, status, tags, vendor
  • shopify_count_products — Get total product count

Orders

  • shopify_list_orders — List orders with filters (status, financial, fulfillment, date range)
  • shopify_get_order — Get order by ID
  • shopify_update_order — Update note, tags, email
  • shopify_cancel_order — Cancel an order
  • shopify_count_orders — Get total order count

Customers

  • shopify_list_customers — List customers
  • shopify_get_customer — Get customer by ID
  • shopify_search_customers — Search by name, email, phone
  • shopify_count_customers — Get total customer count

Collections

  • shopify_list_collections — List all custom + smart collections
  • shopify_get_collection — Get collection by ID
  • shopify_list_collection_products — List products in a collection

Metafields

  • shopify_list_metafields — List metafields for any resource
  • shopify_set_metafield — Create or update a metafield
  • shopify_delete_metafield — Delete a metafield by ID

Themes

  • shopify_list_themes — List all themes
  • shopify_get_theme — Get theme by ID
  • shopify_list_theme_assets — List all asset keys in a theme
  • shopify_get_theme_asset — Get file content of a theme asset
  • shopify_update_theme_asset — Write content to a theme file

GraphQL

  • shopify_graphql — Execute any GraphQL query or mutation

License

MIT © Apex Radius Labs