Skip to content
VS Code

instacart for VS Code

io.github.markswendsen-code/instacart

MCP server for Instacart - let AI agents manage grocery shopping and place orders autonomously

client:VS Code transport:stdio runtime:npm

Install instacart in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "instacart-email",
      "description": "INSTACART_EMAIL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "instacart-password",
      "description": "INSTACART_PASSWORD",
      "password": true
    }
  ],
  "servers": {
    "instacart": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@striderlabs/mcp-instacart"
      ],
      "env": {
        "INSTACART_EMAIL": "${input:instacart-email}",
        "INSTACART_PASSWORD": "${input:instacart-password}"
      }
    }
  }
}

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

instacart in other clients