compare_prices
Analyze product prices across multiple supermarkets to identify the lowest price, compare store differences, calculate potential savings, and make informed purchasing decisions.
Instructions
Compare prices for a product across all supermarkets and find the best deal.
This tool analyzes prices and provides:
Lowest price and which supermarket has it
Highest price for comparison
Average price across all stores
Potential savings
Price differences between stores
Perfect for making informed buying decisions and finding the best deals.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
maxResults | No | Number of results to analyze per store (default: 5) | |
productName | Yes | Product name to compare (e.g., "arroz tio pelon") |
Input Schema (JSON Schema)
{
"properties": {
"maxResults": {
"default": 5,
"description": "Number of results to analyze per store (default: 5)",
"maximum": 20,
"minimum": 1,
"type": "number"
},
"productName": {
"description": "Product name to compare (e.g., \"arroz tio pelon\")",
"type": "string"
}
},
"required": [
"productName"
],
"type": "object"
}