Shopify MCP Server

Shopify MCP server with real analytics (ShopifyQL), auto-refresh auth, and Shopify API 2026-04.

Local serverstdioGo

What is the Shopify MCP server?

Shopify MCP server with real analytics (ShopifyQL), auto-refresh auth, and Shopify API 2026-04. Exposed over MCP by the shopify mcp server, that capability becomes something an assistant can invoke while it works, not something you go and do afterwards.

What it actually does

The working Shopify MCP server. Connect Claude to your Shopify store — products, orders, customers, inventory, analytics and more.

Its toolset

Everything the assistant can do here goes through one of these:

  • Financial — The Financial tool exposed by this server

Adding it to your client

@den.dance/shopify-mcp-pro on npm is all you need. Most clients run it directly, so configuration is a few lines and a restart.

Configuration

You will need 5 environment variables: SHOPIFY_STORE_DOMAIN, SHOPIFY_CLIENT_ID, SHOPIFY_CLIENT_SECRET, SHOPIFY_API_VERSION, SHOPIFY_LOG_LEVEL. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

When to reach for it

Plenty of payments and commerce servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Shopify's toolset — Financial — is a fair guide to whether it matches your workflow. It is maintained by den-indance; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Caveats

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the shopify mcp server does with a few real requests.

Available tools

ToolWhat it does
FinancialThe Financial tool exposed by this server.

How to install the Shopify MCP server

{
  "mcpServers": {
    "shopify-mcp-pro": {
      "command": "npx",
      "args": ["-y", "@den.dance/shopify-mcp-pro"],
      "env": {
        "SHOPIFY_STORE_DOMAIN": "your-value",
        "SHOPIFY_CLIENT_ID": "your-value",
        "SHOPIFY_CLIENT_SECRET": "your-value",
        "SHOPIFY_API_VERSION": "your-value",
        "SHOPIFY_LOG_LEVEL": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

VariableDescriptionRequired
SHOPIFY_STORE_DOMAINConfiguration value read at startup.Optional
SHOPIFY_CLIENT_IDConfiguration value read at startup.Optional
SHOPIFY_CLIENT_SECRETCredential the server authenticates with.Yes
SHOPIFY_API_VERSIONConfiguration value read at startup.Optional
SHOPIFY_LOG_LEVELConfiguration value read at startup.Optional

Example prompts to try

  • Use Shopify to Financial.

Frequently asked questions

It connects Shopify to MCP-compatible AI assistants such as Claude and Cursor, exposing 1 tool (Financial) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Shopify directly.