Skip to content
VS Code

mcp shopify for VS Code

io.github.codespar/mcp-shopify

MCP server for Shopify — Admin REST API (orders, products, customers, inventory, fulfillments)

client:VS Code transport:stdio runtime:npm

Install mcp shopify in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "shopify-shop",
      "description": "SHOPIFY_SHOP",
      "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
    }
  ],
  "servers": {
    "mcp-shopify": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@codespar/mcp-shopify"
      ],
      "env": {
        "SHOPIFY_SHOP": "${input:shopify-shop}",
        "SHOPIFY_ACCESS_TOKEN": "${input:shopify-access-token}",
        "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

mcp shopify in other clients