Add real-time flight data to Claude, Cursor, or Windsurf in 30 seconds. 8 tools. 4 sources including Ryanair direct. True all-in pricing. REST API also available.
Not all flight data is the same. Each source finds different fares.
Broadest coverage. Official airline pricing, transparent fees, and reliable schedule data. The baseline most tools use — we include it too.
Virtual interlining — Kiwi stitches together flights from separate airlines into itineraries that don't exist on any single carrier. Fares you won't find on Google.
Hidden-city ticketing — sometimes a flight connecting through your real destination is cheaper than flying direct. Skiplagged finds those fares.
Europe's biggest low-cost carrier refuses to list on aggregators. They're invisible unless you call their API directly — so we do.
AI Fly Sky is a native MCP server. Add it to Claude Desktop, Cursor, or Windsurf with 3 lines of JSON.
{
"mcpServers": {
"ai-fly-sky": {
"url": "https://api.aiflysky.com/mcp",
"headers": {
"X-API-Key": "your-api-key-here"
}
}
}
}
{
"mcpServers": {
"ai-fly-sky": {
"serverType": "http",
"url": "https://api.aiflysky.com/mcp",
"headers": {
"X-API-Key": "your-api-key-here"
}
}
}
}
{
"mcpServers": {
"ai-fly-sky": {
"url": "https://api.aiflysky.com/mcp",
"headers": {
"X-API-Key": "your-api-key-here"
}
}
}
}
One MCP server. Eight tools. No scraping. No caching. Real-time flight data.
Add to Claude Desktop, Cursor, or Windsurf with 3 lines of JSON. 8 tools available instantly — no SDK, no wrappers, no setup beyond a config file.
Competitors cap at 10–15. We return every option from Google Flights, Kiwi, Skiplagged, and Ryanair direct — deduplicated and ranked.
Base fare + checked bags + carry-on upcharge + seat selection. No surprises at checkout. A $30 Ryanair flight costs $95 — we show you that.
Search up to 21 days in parallel. "What's the cheapest day to fly TLV→LHR in July?" — answered in one call.
Cached a price yesterday? Verify it's still live before showing it to your user. Prices change fast.
Structured carry-on and checked bag policies for 29 airlines. Including LCCs like Ryanair, Wizz, Spirit.
The only dedicated flight MCP server. Compared to the nearest alternative.
| Feature | AI Fly Sky | SerpAPI |
|---|---|---|
| MCP server | Native (8 tools) | Not available |
| Results per route | 60–200 | ~10 |
| Data sources | 4 (Google + Kiwi + Skiplagged + Ryanair direct) | 1 (Google only) |
| All-in pricing | ✓ Bags + seats included | ✗ Base fare only |
| Cheapest dates | ✓ 21-day parallel search | ✗ One date at a time |
| Baggage rules | ✓ 29 airlines | ✗ Not available |
| Deal verification | ✓ Live price check | ✗ Not available |
| Price for 10K calls | $79/mo | $150/mo |
Start free. Scale when you're ready. No contracts.
Enterprise / Custom? Email yos.dabian@aiflysky.com
Get your free API key, then make your first call.
# 1. Get your free API key (no card needed) # Visit: https://api.aiflysky.com/signup/free?email=you@email.com # 2. Search flights curl -X POST https://api.aiflysky.com/api/search_flights_comprehensive \\ -H "X-API-Key: ***" \\ -H "Content-Type: application/json" \\ -d '{"origin":"TLV","destination":"LHR","departure_date":"2026-07-01"}' # 3. Response: 60-200 flights sorted by price, with all-in pricing
// Claude Desktop: ~/.config/claude_desktop_config.json // Cursor: .cursor/mcp.json // Windsurf: ~/.codeium/windsurf/mcp_config.json { "mcpServers": { "ai-fly-sky": { "url": "https://api.aiflysky.com/mcp", "headers": { "X-API-Key": "your-api-key-here" } } } } // For Cursor, add "serverType": "http"