trackmcp
Back to directory

Award Travel Finder MCP server — search award flight availability across 27 airlines and award-chart pricing for 23 loyalty programs from Claude, ChatGPT, Cursor, Grok and any MCP client.

6 starsOthers Updated Sep 2, 2026
award-travelclaude-code-pluginmcpmcp-servermodel-context-protocolpoints-and-milesairlinesantigravity-cli-extensionsflightstravelgemini-cli-extension

Documentation

Award Travel Finder — Claude Code Plugin & MCP Server

Search award flight availability, compare loyalty programs, and find the best points redemptions from your AI assistant. This plugin connects to the Award Travel Finder MCP server, which exposes 127 award-travel tools over a single hosted endpoint.

Works with Claude Code, Claude Desktop, Cursor, Windsurf, ChatGPT, Grok, Antigravity, and any MCP-compatible client.

Quick install

code
/plugin marketplace add AwardTravelFinder/mcp
/plugin install award-travel-finder

Gemini CLI / Antigravity

code
gemini extensions install https://github.com/AwardTravelFinder/mcp

Any other MCP client

Point your client at the endpoint:

code
https://mcp.awardtravelfinder.com/mcp

For clients that take a config file:

json
{
  "mcpServers": {
    "awardtravelfinder": {
      "command": "npx",
      "args": ["-y", "mcp-remote", "https://mcp.awardtravelfinder.com/mcp"]
    }
  }
}

Clients with native remote-MCP support (Cursor, Windsurf, ChatGPT developer mode, Grok custom connectors) can use the URL directly without `mcp-remote`.

Per-client setup guides: awardtravelfinder.com/mcp.

Authentication

The server uses OAuth 2.1 as the MCP spec describes. On your first tool call the client opens your browser to sign in — about 30 seconds, no card. There is no API key.

> Do not set an `Authorization` or `X-API-Key` header. API-key authentication was retired on 2026-06-07. A leftover static header overrides the OAuth token the client obtained, and every request then fails with 401 even though the sign-in appeared to succeed. If you followed an older version of these instructions, delete the `headers` block from your config.

A free account covers everyday trip planning. Premium unlocks unlimited searches and every cabin.

What you can do

Ask naturally — the bundled `award-travel` skill activates on its own when you mention award flights, points, miles, or an airline:

code
"Find business class from London to New York using Avios"
"Are there any award seats on Cathay Pacific HKG-LHR next month?"
"Which program has the cheapest business class to Tokyo?"
"How many Avios do I need for London to New York in business?"

Or use the slash commands:

code
/atf:search-flights BA LHR JFK 2026-06-15
/atf:compare-programs british-airways emirates

Coverage

28 airlines can be searched one at a time with `search_availability`:

British Airways, Qatar Airways, Cathay Pacific, Virgin Atlantic, Iberia, Emirates, Qantas, Alaska Airlines, American Airlines, JetBlue, Frontier, Southwest, Delta, Japan Airlines, United, TAP Portugal, Cape Air, Icelandair, Condor, Aer Lingus, El Al, Turkish Airlines, ANA, Lufthansa, Air France, KLM, Etihad, Smiles (GOL).

11 of those are in the `search_all_airlines` fan-out, which sweeps them together in one call: British Airways, Cathay Pacific, Virgin Atlantic, Iberia, Qatar Airways, Alaska Airlines, JetBlue, Frontier, Southwest, Qantas, Smiles (GOL). Award inventory is genuinely sparse, so a route with no results usually means no seats rather than a broken search.

23 loyalty programs have award-chart data via `get_program_rates`:

`british-airways`, `qatar-airways`, `singapore-airlines`, `cathay-pacific`, `emirates`, `etihad`, `flying-blue`, `aeroplan`, `turkish-airlines`, `ana`, `jetblue`, `jet2-emirates`, `virgin-atlantic`, `iberia`, `alaska-airlines`, `american-airlines`, `qantas`, `delta-skymiles`, `united`, `lifemiles`, `marriott-bonvoy`, `hilton-honors`, `hyatt`.

4 hotel programs for award nights: Marriott, Hilton, IHG, Hyatt.

Tools

127 tools in total. The most-used ones:

ToolWhat it does
`search_availability`Award seats for one airline, route and date
`search_all_airlines`Sweep the 9 fan-out airlines in one call
`search_monthly_availability`A whole month, day by day
`search_hybrid`Cash-and-points combinations
`get_pricing`Award-chart pricing for a route
`get_program_rates`The full award chart for a program
`get_points_valuation`What a currency is worth
`find_transfer_paths`Routes from your cards into a program
`compare_transfer_options`Which transfer gets you there cheapest
`get_status_matches`Elite status match opportunities
`search_hotels` / `get_hotel_availability`Award nights across the 4 hotel programs
`get_portfolio` / `list_points_balances`Your tracked balances
`add_flight_booking` / `list_flight_bookings`Your trip log

Run `tools/list` against the endpoint for the full catalogue — it answers without authentication, so you can inspect the server before signing in.

Repository structure

This repo is the public home for every Award Travel Finder AI and MCP surface — the Claude Code plugin, the MCP server manifest we publish to the official registry, and the metadata directories index.

code
mcp/
  server.json            # Official MCP registry manifest
  gemini-extension.json  # Gemini CLI / Antigravity extension manifest
  .claude-plugin/
    plugin.json          # Plugin metadata
    marketplace.json     # Marketplace listing
  .mcp.json              # MCP server connection config
  logo.png               # 400x400 marketplace logo
  llms-install.md        # Agent-readable setup steps
  commands/
    search-flights.md    # /atf:search-flights
    compare-programs.md  # /atf:compare-programs
  skills/
    award-travel/        # Activates on award-travel questions
  openclaw/
    SKILL.md             # OpenClaw-flavoured variant of the same skill

The MCP server itself is a hosted service at `mcp.awardtravelfinder.com`; this repo holds the manifests and client-facing docs, not the server implementation.

Support

Open an issue here, or email support@awardtravelfinder.com.

License

MIT

Frequently asked questions

What is mcp?

mcp is Award Travel Finder MCP server — search award flight availability across 27 airlines and award-chart pricing for 23 loyalty programs from Claude, ChatGPT, Cursor, Grok and any MCP client.

How do I install mcp?

Open the GitHub repository and follow its README. Most MCP servers are added to your client's MCP config, then called by your agent.

Is mcp open source?

Yes — it is hosted on GitHub at https://github.com/AwardTravelFinder/mcp and has 6 stars.

Related MCP tools

Run your own MCP server? See who uses it and what to fix.

Measure it with TrackMCP