Skip to content
VS Code

Grocery Delivery (mein-aldi.de) for VS Code

io.github.rayncooper/grocery-delivery-mcp

Unofficial read-only client for the mein-aldi.de (ALDI Süd) grocery-delivery catalog.

client:VS Code transport:stdio runtime:npm

Install Grocery Delivery (mein-aldi.de) in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "aldi-service-type",
      "description": "ALDI_SERVICE_TYPE",
      "password": true
    }
  ],
  "servers": {
    "grocery-delivery-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "grocery-delivery-mcp"
      ],
      "env": {
        "ALDI_SERVICE_TYPE": "${input:aldi-service-type}"
      }
    }
  }
}

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

Grocery Delivery (mein-aldi.de) in other clients