Input schema (server-provided preview — do not copy)
{
"type": "object",
"properties": {
"city": {
"type": "string",
"description": "City name (e.g., 'Asheville')"
},
"limit": {
"type": "number",
"maximum": 50,
"minimum": 1,
"description": "Max results (default 10, max 50)"
},
"query": {
"type": "string",
"description": "Search keyword (e.g., 'pizza', 'emergency plumber', 'hair salon')"
},
"state": {
"type": "string",
"description": "State code (e.g., 'NC')"
},
"offset": {
"type": "number",
"minimum": 0,
"description": "Pagination offset (default 0)"
},
"category": {
"enum": [
"restaurant",
"salon",
"barbershop",
"dental",
"medical",
"veterinary",
"plumber",
"electrician",
"hvac",
"contractor",
"landscaping",
"auto_repair",
"auto_body",
"tire_shop",
"law_firm",
"accounting",
"real_estate",
"insurance",
"retail",
"fitness",
"spa",
"pet_grooming",
"cleaning",
"moving",
"photography",
"catering",
"bakery",
"coffee_shop",
"bar",
"brewery",
"other"
],
"type": "string",
"description": "Business category filter"
},
"latitude": {
"type": "number",
"maximum": 90,
"minimum": -90,
"description": "Latitude for location-based search"
},
"longitude": {
"type": "number",
"maximum": 180,
"minimum": -180,
"description": "Longitude for location-based search"
},
"radius_miles": {
"type": "number",
"maximum": 50,
"minimum": 0.1,
"description": "Search radius in miles (max 50). Requires latitude/longitude."
}
}
}