Skip to content
VS Code

shopware mcp for VS Code

io.github.bnymndev/shopware-mcp

Query and safely manage a Shopware 6 shop: products, orders, customers, stock, audits, reports.

client:VS Code transport:stdio runtime:npm

Install shopware mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "shopware-url",
      "description": "SHOPWARE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "shopware-client-id",
      "description": "SHOPWARE_CLIENT_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "shopware-client-secret",
      "description": "SHOPWARE_CLIENT_SECRET",
      "password": true
    },
    {
      "type": "promptString",
      "id": "shopware-mcp-allow-write",
      "description": "SHOPWARE_MCP_ALLOW_WRITE",
      "password": true
    }
  ],
  "servers": {
    "shopware-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "shopware-mcp"
      ],
      "env": {
        "SHOPWARE_URL": "${input:shopware-url}",
        "SHOPWARE_CLIENT_ID": "${input:shopware-client-id}",
        "SHOPWARE_CLIENT_SECRET": "${input:shopware-client-secret}",
        "SHOPWARE_MCP_ALLOW_WRITE": "${input:shopware-mcp-allow-write}"
      }
    }
  }
}

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

shopware mcp in other clients