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
| Name | Type | Required | Description |
|---|---|---|---|
term | string | yes | Product search term, e.g. “whole milk”, “cage free eggs”, “diet coke 12 pack” |
zip_code | string | no | US ZIP code — the nearest store is auto-selected so prices and stock appear |
location_id | string | no | Exact store location_id from kroger_store_locator (overrides zip_code) |
brand | string | no | Optional brand filter, e.g. “Kroger”, “Organic Valley” |
limit | number | no | Max products to return, 1-50 (default 10) |
_apiKey | string | no | Optional: your own Kroger API credentials as “client_id:client_secret” (free at developer.kroger.com) |
Example call
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":{}}}'
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.