Kroger

live Food

Grocery prices and availability at 2,700 Kroger-family supermarkets (Kroger, Ralphs, Fred Meyer, King Soopers, Harris Teeter) — product search with shelf and promo prices, stock levels, and store locator.

3 tools
0ms auth
free tier 50 calls/day

Tools

kroger_store_locator

Find Kroger-family grocery stores and supermarkets near a US ZIP code — covers Kroger, Ralphs, Fred Meyer, King Soopers, Fry's, Harris Teeter, QFC, Smith's, Dillons, Food 4 Less, Mariano's and more. R

No parameters required.

Try it
kroger_product_details

Get full detail for one grocery product by its product_id — price, promo price, stock level, size, categories, aisle location, images. Pass zip_code or location_id for store-specific price/stock. Exam

No parameters required.

Try it

Test with curl

The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/kroger/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
curl -X POST https://gateway.pipeworx.io/kroger/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"kroger_store_locator","arguments":{}}}'

Use with the SDK

Install @pipeworx/sdk to call tools from any TypeScript/Node project.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("kroger_store_locator", {});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("grocery prices and availability at 2,700 kroger-family supermarkets (kroger, ralphs, fred meyer, king soopers, harris teeter) — product search with shelf and promo prices, stock levels, and store locator");