kroger_product_search

Pack: kroger · Endpoint: https://gateway.pipeworx.io/kroger/mcp

Search grocery products at Kroger-family supermarkets with real shelf prices, promo/sale prices, stock level, and aisle. Answers “how much does milk cost”, “is X in stock”, grocery price comparison. Give a zip_code (or location_id) to get store-specific prices; without one, only the national product catalog is returned (no prices). Example: kroger_product_search({ term: “whole milk”, zip_code: “45202” })

Parameters

NameTypeRequiredDescription
termstringyesProduct search term, e.g. “whole milk”, “cage free eggs”, “diet coke 12 pack”
zip_codestringnoUS ZIP code — the nearest store is auto-selected so prices and stock appear
location_idstringnoExact store location_id from kroger_store_locator (overrides zip_code)
brandstringnoOptional brand filter, e.g. “Kroger”, “Organic Valley”
limitnumbernoMax products to return, 1-50 (default 10)
_apiKeystringnoOptional: your own Kroger API credentials as “client_id:client_secret” (free at developer.kroger.com)

Example call

Arguments

{
  "term": "whole milk",
  "zip_code": "45202"
}

curl

curl -X POST https://gateway.pipeworx.io/kroger/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"kroger_product_search","arguments":{"term":"whole milk","zip_code":"45202"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('kroger_product_search', {
  "term": "whole milk",
  "zip_code": "45202"
});

More examples

{
  "term": "cage free eggs",
  "location_id": "01400959",
  "brand": "Organic Valley"
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "kroger": {
      "url": "https://gateway.pipeworx.io/kroger/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 29, 2026