kroger_product_details
Pack: kroger · Endpoint: https://gateway.pipeworx.io/kroger/mcp
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. Example: kroger_product_details({ product_id: “0001111041700”, zip_code: “45202” })
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
product_id | string | yes | 13-digit Kroger product ID from kroger_product_search |
zip_code | string | no | US ZIP code — nearest store auto-selected for price/stock |
location_id | string | no | Exact store location_id (overrides zip_code) |
_apiKey | string | no | Optional: your own Kroger API credentials as “client_id:client_secret” |
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_details","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.