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

shopify-admin-readonly-mcp

v1.1.0

Published

A read-only MCP server for the Shopify Admin GraphQL API — query products, orders, customers, inventory, and more

Readme

Shopify Admin Readonly MCP Server

A read-only MCP (Model Context Protocol) server for the Shopify Admin GraphQL API. Allows AI assistants to query your Shopify store data without any risk of modification.

Tools Available

| Tool | Description | |------|-------------| | shopify_get_shop | Get store info (name, domain, currency, plan) | | shopify_list_products | List products with filtering and pagination | | shopify_get_product | Get full product details including variants and images | | shopify_list_product_variants | List variants with SKU/inventory filtering | | shopify_list_orders | List orders with status filtering | | shopify_get_order | Get full order details with fulfillments | | shopify_list_customers | Search/list customers | | shopify_get_customer | Get full customer details with order history | | shopify_list_collections | List product collections | | shopify_list_locations | List fulfillment locations | | shopify_get_inventory_levels | Get inventory by location |

Setup

Step 1 — Create a Shopify App in Dev Dashboard

  1. Go to dev.shopify.com and sign in with your Shopify Partner account
  2. Click Create app and give it a name (e.g. Claude Admin MCP)
  3. Under App setup, set the App URL to http://localhost
  4. Add http://localhost:3456/callback to Allowed redirect URLs
  5. Save

Then configure the required API scopes. You need:

| Scope | Used for | |-------|----------| | read_products | Products, variants, collections | | read_orders | Orders (last 60 days) | | read_all_orders | Orders older than 60 days | | read_customers | Customers | | read_inventory | Inventory levels | | read_locations | Fulfillment locations |

  1. From the app's Settings page, copy your Client ID and Client Secret

Step 2 — Get Your Access Token

Run the included helper script to go through the OAuth flow once and get a permanent offline access token:

npx shopify-admin-readonly-mcp get-token <shop-domain> <client-id> <client-secret>

Or clone the repo and run directly:

git clone https://github.com/vessi-dev/shopify-admin-mcp
cd shopify-admin-mcp
node get-token.js your-store.myshopify.com YOUR_CLIENT_ID YOUR_CLIENT_SECRET

This will:

  1. Open your browser to the Shopify authorization page
  2. After you click Install, automatically exchange the code for a token
  3. Print your permanent access token to the terminal

Copy the token — it starts with shpca_... and never expires.

Step 3 — Configure Claude Desktop

Add to your claude_desktop_config.json:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "shopify-admin-readonly": {
      "command": "npx",
      "args": ["-y", "shopify-admin-readonly-mcp@latest"],
      "env": {
        "SHOPIFY_SHOP_DOMAIN": "your-store.myshopify.com",
        "SHOPIFY_ACCESS_TOKEN": "shpca_xxxxxxxxxxxx"
      }
    }
  }
}

Restart Claude Desktop — the server will connect automatically.

Step 4 (optional) — Run as HTTP Server

TRANSPORT=http SHOPIFY_SHOP_DOMAIN=your-store.myshopify.com SHOPIFY_ACCESS_TOKEN=shpca_xxx PORT=3000 npx shopify-admin-readonly-mcp@latest

Environment Variables

| Variable | Required | Description | |----------|----------|-------------| | SHOPIFY_SHOP_DOMAIN | ✅ | Your store domain (e.g., my-store.myshopify.com) | | SHOPIFY_ACCESS_TOKEN | ✅ | Offline access token from the OAuth flow (shpca_...) | | SHOPIFY_API_VERSION | Optional | API version (default: 2025-01) | | TRANSPORT | Optional | stdio (default) or http | | PORT | Optional | HTTP port when using HTTP transport (default: 3000) |

Security

This server is strictly read-only — it only uses GraphQL queries, never mutations. All tools have readOnlyHint: true and destructiveHint: false annotations.