Skip to content
VS Code

shopify mcp for VS Code

io.github.miller-joe/shopify-mcp

MCP server for Shopify Admin API with a ComfyUI bridge for AI product image generation.

client:VS Code transport:stdio runtime:npm

Install shopify mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "shopify-store",
      "description": "SHOPIFY_STORE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "shopify-access-token",
      "description": "SHOPIFY_ACCESS_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "shopify-api-version",
      "description": "SHOPIFY_API_VERSION",
      "password": true
    },
    {
      "type": "promptString",
      "id": "comfyui-url",
      "description": "COMFYUI_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "comfyui-public-url",
      "description": "COMFYUI_PUBLIC_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "comfyui-default-ckpt",
      "description": "COMFYUI_DEFAULT_CKPT",
      "password": true
    }
  ],
  "servers": {
    "shopify-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@miller-joe/shopify-mcp"
      ],
      "env": {
        "SHOPIFY_STORE": "${input:shopify-store}",
        "SHOPIFY_ACCESS_TOKEN": "${input:shopify-access-token}",
        "SHOPIFY_API_VERSION": "${input:shopify-api-version}",
        "COMFYUI_URL": "${input:comfyui-url}",
        "COMFYUI_PUBLIC_URL": "${input:comfyui-public-url}",
        "COMFYUI_DEFAULT_CKPT": "${input:comfyui-default-ckpt}"
      }
    }
  }
}

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 in other clients