Search award flights directly from your AI assistant. Uniform response format across all airlines. No API key needed — 10 free economy searches/month. Upgrade for more calls and all cabin classes.
{
"mcpServers": {
"awardtravelfinder": {
"command": "npx",
"args": [
"-y", "mcp-remote",
"https://mcp.awardtravelfinder.com/mcp",
"--header", "X-API-Key:${ATF_API_KEY}"
],
"env": {
"ATF_API_KEY": "your-api-key-or-omit-for-free-tier"
}
}
}
}Run in your terminal (works without API key — 10 free economy searches/month):
claude mcp add awardtravelfinder --transport streamable-http https://mcp.awardtravelfinder.com/mcp
For more calls or all cabins, add -H "X-API-Key: your-key". Get your key from your dashboard
{
"mcpServers": {
"awardtravelfinder": {
"url": "https://mcp.awardtravelfinder.com/mcp"
}
}
}{
"mcpServers": {
"awardtravelfinder": {
"serverUrl": "https://mcp.awardtravelfinder.com/mcp"
}
}
}10 tools — 4 freemium flight search, 1 public reference, 1 public status match, 4 auth-gated hotel monitoring
Track your award bookings, points balances, and travel portfolio. Combine with Gmail MCP to automatically import bookings from confirmation emails.
All responses use a uniform cabins object with four canonical keys. Each cabin always returns the full object — never omitted, never false. Check response_type to determine the shape.
{ "available": true, "seats": 5, "points": 26000, "taxes": 1, "taxes_currency": "GBP" }
{ "available": false, "seats": 0, "points": null, "taxes": null, "taxes_currency": null }
{ "response_type": "flights",
"route": "DOH -> JFK", "search_date": "2026-03-15",
"flights": [{
"segments": [{ "flight_number": "QR701", "from": "DOH", "to": "JFK", ... }],
"cabins": {
"economy": { ... }, "premium_economy": { ... },
"business": { ... }, "first": { ... }
},
"duration": "13h 30m", "overnight": false
}]
}
{ "response_type": "calendar",
"route": "LHR -> JFK", "search_date": "2026-03-15",
"availability": {
"date": "2026-03-15",
"cabins": {
"economy": { ... }, "premium_economy": { ... },
"business": { ... }, "first": { ... }
},
"peak": false
}
}
{ "route": "LHR -> JFK", "month": "March 2026",
"availability": [
{ "date": "2026-03-01", "cabins": { "economy": { ... }, ... }, "peak": false },
...
]
}
{ "route": "LHR -> JFK", "currency": "Avios",
"pricing": {
"economy": { "off_peak": 26000, "peak": 32500, "taxes_off_peak": 1, "taxes_peak": 1 },
"premium_economy": { ... }, "business": { ... }, "first": { ... }
}
}
Ask your AI assistant: