Track flight prices using Google Flights data. Search flights, find cheapest dates, filter by airline/time/duration/price, track routes over time, and get alerts when prices drop. Also runs as an MCP
Track flight prices using Google Flights data. Search flights, find cheapest dates, filter by airline/time/duration/price, track routes over time, and get alerts when prices drop. Also runs as an MCP . This skill provides a specialized system prompt that configures your AI coding agent as a flightclaw expert, with detailed methodology and structured output formats.
Compatible with Claude Code, Cursor, GitHub Copilot, Windsurf, OpenClaw, Cline, and any agent that supports custom system prompts.
Track flight prices from Google Flights. Search routes, monitor prices over time, and get alerts when prices drop.
npx skills add jackculpan/flightclawOr manually:
bash skills/flightclaw/setup.shpython skills/flightclaw/scripts/search-flights.py LHR JFK 2025-07-01
python skills/flightclaw/scripts/search-flights.py LHR JFK 2025-07-01 --cabin BUSINESS
python skills/flightclaw/scripts/search-flights.py LHR JFK 2025-07-01 --return-date 2025-07-08
python skills/flightclaw/scripts/search-flights.py LHR JFK 2025-07-01 --stops NON_STOP --results 10
# Multiple airports (searches all combinations)
python skills/flightclaw/scripts/search-flights.py LHR,MAN JFK,EWR 2025-07-01
# Date range (searches each day)
python skills/flightclaw/scripts/search-flights.py LHR JFK 2025-07-01 --date-to 2025-07-05
# Both
python skills/flightclaw/scripts/search-flights.py LHR,MAN JFK,EWR 2025-07-01 --date-to 2025-07-03Arguments:
origin - IATA airport code(s), comma-separated (e.g. LHR or LHR,MAN)destination - IATA airport code(s), comma-separated (e.g. JFK or JFK,EWR)date - Departure date (YYYY-MM-DD)--date-to - End of date range (YYYY-MM-DD). Searches each day from date to date-to inclusive.--return-date - Return date for round trips (YYYY-MM-DD)--cabin - ECONOMY (default), PREMIUM_ECONOMY, BUSINESS, FIRST--stops - ANY (default), NON_STOP, ONE_STOP, TWO_STOPS--results - Number of results (default: 5)python skills/flightclaw/scripts/track-flight.py LHR JFK 2025-07-01
python skills/flightclaw/scripts/track-flight.py LHR JFK 2025-07-01 --target-price 400
python skills/flightclaw/scripts/track-flight.py LHR JFK 2025-07-01 --return-date 2025-07-08 --cabin BUSINESS
# Track multiple airports and dates
python skills/flightclaw/scripts/track-flight.py LHR,MAN JFK,EWR 2025-07-01 --date-to 2025-07-03 --target-price 400Arguments:
--target-price - Alert when price drops below this amountpython skills/flightclaw/scripts/check-prices.py
python skills/flightclaw/scripts/check-prices.py --threshold 5Arguments:
--threshold - Percentage drop to trigger alert (default: 10)python skills/flightclaw/scripts/list-tracked.pyFlightClaw also runs as an MCP server with extended search capabilities:
pip install flights "mcp[cli]"
claude mcp add flightclaw -- python3 server.pyMCP tools: search_flights, search_dates, track_flight, check_prices, list_tracked, remove_tracked
Additional MCP filters: passengers (adults/children/infants), airline filter, price limit, max flight duration, departure/arrival time restrictions, layover duration, sort order, and cheapest-date calendar search.
Prices are returned in the user's local currency based on their IP location. The currency is auto-detected from the Google Flights API response and displayed with the correct symbol (e.g. $, £, ฿, €). Tracked flights store the currency code in tracked.json.
Price history is stored in skills/flightclaw/data/tracked.json and persists via R2 backup.
Weekly roundup of top Claude Code skills, MCP servers, and AI coding tips.