Skip to content
VS Code

leclerc drive for VS Code

io.github.skunkobi/leclerc-drive

MCP server for E.Leclerc Drive — search products, manage cart, and order groceries from Claude

client:VS Code transport:stdio runtime:npm

Install leclerc drive in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "leclerc-store-id",
      "description": "LECLERC_STORE_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "leclerc-host",
      "description": "LECLERC_HOST",
      "password": true
    },
    {
      "type": "promptString",
      "id": "leclerc-cookie",
      "description": "LECLERC_COOKIE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "leclerc-chrome-profile",
      "description": "LECLERC_CHROME_PROFILE",
      "password": true
    }
  ],
  "servers": {
    "leclerc-drive": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "mcp-leclerc-drive"
      ],
      "env": {
        "LECLERC_STORE_ID": "${input:leclerc-store-id}",
        "LECLERC_HOST": "${input:leclerc-host}",
        "LECLERC_COOKIE": "${input:leclerc-cookie}",
        "LECLERC_CHROME_PROFILE": "${input:leclerc-chrome-profile}"
      }
    }
  }
}

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

leclerc drive in other clients