Skip to content
VS Code

shopify mcp pro for VS Code

io.github.den-indance/shopify-mcp-pro

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

client:VS Code transport:stdio runtime:npm

Install shopify mcp pro in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "shopify-store-domain",
      "description": "SHOPIFY_STORE_DOMAIN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "shopify-client-id",
      "description": "SHOPIFY_CLIENT_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "shopify-client-secret",
      "description": "SHOPIFY_CLIENT_SECRET",
      "password": true
    },
    {
      "type": "promptString",
      "id": "shopify-api-version",
      "description": "SHOPIFY_API_VERSION",
      "password": true
    }
  ],
  "servers": {
    "shopify-mcp-pro": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@den.dance/shopify-mcp-pro"
      ],
      "env": {
        "SHOPIFY_STORE_DOMAIN": "${input:shopify-store-domain}",
        "SHOPIFY_CLIENT_ID": "${input:shopify-client-id}",
        "SHOPIFY_CLIENT_SECRET": "${input:shopify-client-secret}",
        "SHOPIFY_API_VERSION": "${input:shopify-api-version}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

shopify mcp pro in other clients