Openclaw
Claude Code plugin & MCP server for searching award flights, comparing loyalty programs, and finding the best points redemptions. Works with Claude Code, Claude Desktop, and any MCP client.
npx -y skills add AwardTravelFinder/award-travel-finder-plugin --skill openclawAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 2 stars2 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Search award flight availability across 19 airlines and compare 14 loyalty program award charts via the Award Travel Finder MCP server. Find the best points and miles redemptions across British Airways, Qatar Airways, Cathay Pacific, Virgin Atlantic, Aeroplan, Iberia, Emirates, Qantas, Alaska, American, JetBlue, ANA, Singapore, Turkish, Etihad, Flying Blue, and more.
SKILL.md
5.0 KB, as published. Nobody here has run it
Award Travel Finder
Search award flight availability and compare loyalty program award charts via the Award Travel Finder MCP server. 19 airlines, 14 loyalty programs, one prompt.
Setup
Free with a free awardtravelfinder.com account — 50 searches/month. On first tool call the client opens your browser to sign up via OAuth (~30 seconds). Paid tiers (150/month and up) at awardtravelfinder.com/pricing.
Claude Code (recommended)
/plugin marketplace add jackculpan/award-travel-finder-plugin
/plugin install award-travel-finder
Claude Desktop / Cursor
Add to your MCP config:
{
"mcpServers": {
"awardtravelfinder": {
"type": "url",
"url": "https://mcp.awardtravelfinder.com/mcp"
}
}
}
OAuth-aware clients sign you in on first call automatically. For clients without native OAuth, use npx mcp-remote https://mcp.awardtravelfinder.com/mcp.
Legacy X-API-Key
Header-based auth is still supported for users who configured it pre-OAuth, or for server-to-server agents. Generate a key at awardtravelfinder.com/pricing and pass X-API-Key: atf_....
Available Tools (21)
Flight search
| Tool | Description |
|---|---|
search_availability | Award seats for a specific route and date. Returns cabin-by-cabin availability. |
search_monthly_availability | Calendar view for a whole month, one airline. Up to 90s. |
search_all_airlines | Fan out a single date across every supported airline at once. |
search_hybrid | Cash + points side-by-side, with hub/connection logic for split-ticket journeys. |
get_pricing | Award chart for a route. Points per cabin class, off-peak and peak. |
Loyalty programs
| Tool | Description |
|---|---|
get_program_rates | Full award chart for a specific program — zones, cabin pricing, partner rules. |
get_buy_points_pricing | Current "buy miles" promotions. |
get_status_matches | Programs that status-match a given tier, and how long it lasts. |
Hotels
search_hotels, get_hotel_availability, monitor_hotel_price, list_hotel_bookings, get_hotel_booking
Trip portfolio (per user)
add_flight_booking, list_flight_bookings, get_flight_booking, update_flight_booking, delete_flight_booking, update_points_balance, list_points_balances, get_portfolio
Airlines (19)
Oneworld — British Airways (BA), Cathay Pacific (CX), Iberia (IB), Qatar Airways (QR), American Airlines (AA), Alaska Airlines (AS), Qantas (QF), Japan Airlines (JL)
SkyTeam — Air France / KLM, Korean Air
Star Alliance — Singapore Airlines, ANA, Turkish Airlines, Aeroplan / Air Canada
Non-aligned / partners — Virgin Atlantic (VS), Emirates (EK), Etihad (EY), JetBlue (B6), Frontier (F9)
Loyalty Programs (14)
| Program | Slug | Currency |
|---|---|---|
| British Airways | british-airways | Avios |
| Iberia | iberia | Avios |
| Qatar Airways | qatar-airways | Avios |
| Aer Lingus | aer-lingus | Avios |
| Virgin Atlantic | virgin-atlantic | Virgin Points |
| Aeroplan | aeroplan | Aeroplan Points |
| Flying Blue | flying-blue | Flying Blue Miles |
| Cathay Pacific | cathay-pacific | Asia Miles |
| Singapore Airlines | singapore-airlines | KrisFlyer Miles |
| Emirates | emirates | Skywards Miles |
| Etihad | etihad | Guest Miles |
| Turkish Airlines | turkish-airlines | Miles & Smiles |
| ANA | ana | Mileage Club |
| JetBlue | jetblue | TrueBlue Points |
Usage Examples
Search Specific Date
Find BA business class availability from LHR to JFK on April 15th 2026
Uses get_pricing then search_availability.
Search Flexible Dates
Show me Qatar Airways availability from Doha to Singapore for all of May
Uses search_monthly_availability.
Search Across Every Airline
What's available JFK→NRT in business class on November 14th 2026?
Uses search_all_airlines.
Multi-Program Comparison
For LHR→HND in business, compare Avios, Aeroplan, Flying Blue, and Virgin Points. Include taxes and fuel surcharges.
Uses get_pricing and get_program_rates.
Cash vs Points (Hybrid)
SFO→LIS Oct 12 2026, business class. Show cash fare and the best hybrid split-ticket option.
Uses search_hybrid.
Resources
- Award Travel Finder for Claude Code — Plugin landing page
- Award Travel Finder
- MCP Server Docs
- Pricing & API Keys