Kroger MCP Server

Kroger MCP Server

Integrates Kroger's public API with Claude to allow adding meal plan grocery lists directly to your Kroger cart via natural language.

Category
Visit Server

README

Kroger MCP Server

Integrates Kroger's public API with Claude so meal plan grocery lists can be added directly to your Kroger cart.

Tools

Tool What it does
kroger_find_store Find nearby Kroger stores by ZIP code, returns location_id
kroger_search_products Search the product catalog, returns UPC + price + aisle
kroger_add_to_cart Add a single product by UPC to your cart
kroger_add_grocery_list Search + add an entire grocery list in one shot
kroger_clear_auth Clear stored tokens (if you need to re-authenticate)

Setup

Step 1 — Register your app at Kroger Developer Portal

  1. Go to https://developer.kroger.com
  2. Click Register App
  3. Fill in:
    • App Name: Meal Plan Assistant (or anything)
    • Redirect URI: http://localhost:8080/callback
    • Scopes: product.compact, cart.basic:write, profile.compact
  4. Copy your Client ID and Client Secret

Step 2 — Install dependencies

cd kroger_mcp
python3 -m venv venv
source venv/bin/activate        # Windows: venv\Scripts\activate
pip install -r requirements.txt

Step 3 — Set environment variables

export KROGER_CLIENT_ID=your_client_id_here
export KROGER_CLIENT_SECRET=your_client_secret_here
export KROGER_REDIRECT_URI=http://localhost:8080/callback

Add these to your shell profile (~/.zshrc or ~/.bashrc) so they persist.

Step 4 — Connect to Claude

Add to your Claude MCP config (usually ~/Library/Application Support/Claude/claude_desktop_config.json on Mac):

{
  "mcpServers": {
    "kroger": {
      "command": "/path/to/kroger_mcp/venv/bin/python",
      "args": ["/path/to/kroger_mcp/server.py"],
      "env": {
        "KROGER_CLIENT_ID": "your_client_id",
        "KROGER_CLIENT_SECRET": "your_client_secret",
        "KROGER_REDIRECT_URI": "http://localhost:8080/callback"
      }
    }
  }
}

Restart Claude Desktop after saving.

First Use — OAuth Login

The first time you ask Claude to add items to your cart:

  1. Your browser will open to Kroger's login page
  2. Log in with your Kroger account
  3. Paste the redirect URL back into the terminal
  4. Done — tokens are saved at ~/.kroger_mcp_tokens.json

After that, Claude can add to your cart silently using the stored refresh token.

Example Flow

Once connected, you can say to Claude:

"Find my nearest Kroger store and add this week's grocery list to my cart"

Claude will:

  1. Call kroger_find_store with your ZIP code
  2. Call kroger_add_grocery_list with all the items
  3. Report back what was added, what was skipped, and any issues

Security Notes

  • Your Client ID and Secret are yours — registered under your account
  • Tokens are stored locally at ~/.kroger_mcp_tokens.json (permissions: 600)
  • No third-party code involved — direct calls to Kroger's official API
  • kroger_clear_auth removes all stored tokens if needed

Troubleshooting

"Missing environment variables" — Set KROGER_CLIENT_ID and KROGER_CLIENT_SECRET

"Authorization expired" — Retry the operation; the server will refresh automatically

"No matching product found" — Try a shorter search term (e.g., "spinach" instead of "Private Selection Baby Spinach")

Rate limits (HTTP 429) — Kroger limits requests; wait 30 seconds and retry

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured