Skip to content
VS Code

good eggs for VS Code

com.pulsemcp/good-eggs

MCP server for Good Eggs grocery shopping automation using Playwright.

client:VS Code transport:stdio runtime:npm

Install good eggs in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "good-eggs-username",
      "description": "GOOD_EGGS_USERNAME",
      "password": true
    },
    {
      "type": "promptString",
      "id": "good-eggs-password",
      "description": "GOOD_EGGS_PASSWORD",
      "password": true
    },
    {
      "type": "promptString",
      "id": "headless",
      "description": "HEADLESS",
      "password": true
    },
    {
      "type": "promptString",
      "id": "timeout",
      "description": "TIMEOUT",
      "password": true
    }
  ],
  "servers": {
    "good-eggs": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "good-eggs-mcp-server"
      ],
      "env": {
        "GOOD_EGGS_USERNAME": "${input:good-eggs-username}",
        "GOOD_EGGS_PASSWORD": "${input:good-eggs-password}",
        "HEADLESS": "${input:headless}",
        "TIMEOUT": "${input:timeout}"
      }
    }
  }
}

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

good eggs in other clients