search_locations
Find nearby Kroger store locations by entering a zip code within a specified radius. Customize results with filters for distance, number of stores, and chain name.
Instructions
Search for Kroger store locations near a zip code.
Args:
zip_code: Zip code to search near (uses environment default if not provided)
radius_in_miles: Search radius in miles (1-100)
limit: Number of results to return (1-200)
chain: Filter by specific chain name
Returns:
Dictionary containing location search results
Input Schema
Name | Required | Description | Default |
---|---|---|---|
chain | No | ||
limit | No | Number of results to return (1-200) | |
radius_in_miles | No | Search radius in miles (1-100) | |
zip_code | No |
Input Schema (JSON Schema)
{
"properties": {
"chain": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Chain"
},
"limit": {
"default": 10,
"description": "Number of results to return (1-200)",
"maximum": 200,
"minimum": 1,
"title": "Limit",
"type": "integer"
},
"radius_in_miles": {
"default": 10,
"description": "Search radius in miles (1-100)",
"maximum": 100,
"minimum": 1,
"title": "Radius In Miles",
"type": "integer"
},
"zip_code": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Zip Code"
}
},
"type": "object"
}