tool_watch_fare
Create a fare watch to monitor airfare between airports on specific dates. Receive alerts when the price drops to a set target or 10% below baseline.
Instructions
Create a fare watch that records a baseline price and alerts when a target is hit.
Writes to local profile store (~/.wander_agent/). No external auth required. Returns the created watch_id, baseline price fetched at creation time, and target_price (auto-set to 10% below baseline if not specified). The watch is passive — prices are only re-checked when tool_check_fare_watches is called.
Use this to begin monitoring a route. Use tool_check_fare_watches to poll for price changes. Use tool_list_fare_watches to see all active watches. Use tool_stop_fare_watch to pause or delete a watch when no longer needed.
Args: origin: Departure airport IATA code (e.g., "JFK") destination: Arrival airport IATA code (e.g., "LHR") depart_date: YYYY-MM-DD departure date return_date: YYYY-MM-DD return date for round trip; omit for one-way adults: Number of passengers (affects price baseline) currency: ISO currency code — USD, EUR, GBP, etc. target_price: Alert threshold; omit to auto-set at 10% below baseline
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| origin | Yes | ||
| destination | Yes | ||
| depart_date | Yes | ||
| return_date | No | ||
| adults | No | ||
| currency | No | USD | |
| target_price | No |