New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

good-eggs-mcp-server

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

good-eggs-mcp-server

MCP server for Good Eggs grocery shopping with Playwright automation

latest
npmnpm
Version
0.1.7
Version published
Weekly downloads
15
-75%
Maintainers
1
Weekly downloads
 
Created
Source

Good Eggs MCP Server

MCP server for Good Eggs grocery shopping automation using Playwright. Search for groceries, manage favorites, add items to cart, and view past orders.

Features

  • Search Groceries - Search for any grocery item on Good Eggs (includes favorite status)
  • Manage Favorites - Get, add, and remove favorite items
  • Get Product Details - View detailed information about any product
  • Shopping Cart - View, add, and remove items from your shopping cart
  • Find Freebies - Find items priced at $0.00 on homepage and fresh-picks
  • Past Orders - View your order history and reorder items

Tools

ToolDescription
search_for_grocerySearch for groceries by keyword (includes favorites)
get_favoritesGet your favorite/saved grocery items
get_grocery_detailsGet detailed info about a specific product
add_to_cartAdd a product to your shopping cart
get_cartView the contents of your shopping cart
remove_from_cartRemove a product from your shopping cart
search_for_freebie_groceriesFind free items ($0.00) on homepage and fresh-picks
get_list_of_past_order_datesGet dates of your past orders
get_past_order_groceriesGet items from a specific past order
add_favoriteAdd a product to your favorites
remove_favoriteRemove a product from your favorites

Quick Start

Prerequisites

  • Node.js 18+
  • A Good Eggs account (create one at goodeggs.com)

Installation

npm install
npm run build

Configuration

Set the following environment variables:

VariableRequiredDescriptionDefault
GOOD_EGGS_USERNAMEYesYour Good Eggs account email-
GOOD_EGGS_PASSWORDYesYour Good Eggs account password-
HEADLESSNoRun browser in headless modetrue
TIMEOUTNoBrowser operation timeout (ms)30000

Claude Desktop Configuration

Add to your claude_desktop_config.json:

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json

Windows: %APPDATA%\Claude\claude_desktop_config.json

{
  "mcpServers": {
    "good-eggs": {
      "command": "npx",
      "args": ["-y", "good-eggs-mcp-server"],
      "env": {
        "GOOD_EGGS_USERNAME": "your-email@example.com",
        "GOOD_EGGS_PASSWORD": "your-password"
      }
    }
  }
}

Restart Claude Desktop to connect.

Usage Examples

Search for groceries

"Search for organic apples"
"Find gluten-free bread"
"Look for chicken breast"

View and add favorites

"Show me my favorite items"
"What are my saved groceries?"

Add items to cart

"Add 2 of those apples to my cart"
"Put the organic milk in my basket"

View your cart

"What's in my cart?"
"Show me my basket"

Check deals

"What deals are available today?"
"Find any free items"

Reorder from past orders

"Show me my past orders"
"What did I order on January 3rd?"

How It Works

This MCP server uses Playwright to automate a browser session with Good Eggs:

  • On first tool use: Launches a browser and logs into your Good Eggs account
  • Browser session persists: All subsequent tool calls reuse the same logged-in session
  • Smart navigation: Tools check if you're already on the right page to minimize navigation
  • Stealth mode: Uses playwright-extra with stealth plugin to avoid bot detection

Development

# Install dependencies
npm run install-all

# Run in development mode
npm run dev

# Build
npm run build

# Run tests
npm test

# Lint
npm run lint

Project Structure

good-eggs/
├── local/                 # Local server implementation
│   └── src/
│       └── index.ts       # Entry point with env validation
├── shared/                # Shared business logic
│   └── src/
│       ├── server.ts      # GoodEggsClient with Playwright automation
│       ├── tools.ts       # MCP tool definitions
│       ├── types.ts       # TypeScript types
│       └── logging.ts     # Logging utilities
├── tests/                 # Test suites
├── package.json           # Root workspace config
└── README.md

Security Notes

  • Your Good Eggs credentials are used only to log into your account
  • The browser session runs locally on your machine
  • No credentials are transmitted to any third-party services
  • Consider using environment variables rather than hardcoding credentials

Limitations

  • Requires a valid Good Eggs account with delivery service in your area
  • Browser automation may occasionally fail if Good Eggs updates their website
  • Some operations (favorites, past orders) require account login

License

MIT

FAQs

Package last updated on 18 Jan 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts