google-flights-mcp
Provides tools for searching flights, tracking prices, comparing cabin classes, analyzing layovers, and generating booking URLs using real-time Google Flights data.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@google-flights-mcpFind nonstop flights from JFK to London next month"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
google-flights-mcp
The most feature-rich MCP server for Google Flights. No API key required.
12 tools for searching flights, tracking prices, comparing cabins, analyzing layovers, and more, all powered by real-time Google Flights data.
Works with Claude Desktop, Claude Code, Cursor, and any MCP-compatible client.
Features no other Google Flights MCP has
Carbon emissions per flight and per leg (CO2 in kg)
Price context: Google's own assessment of whether a price is low, typical, or high
Price tracking: track prices over time with SQLite persistence, detect drops and trends
Calendar heatmap: 60 days of daily prices in a single API call
Cabin class comparison: economy vs premium vs business vs first, side by side
Nearby airport suggestions: find cheaper alternatives (e.g., EWR/LGA near JFK)
Layover analysis: connection time risk assessment (tight/comfortable/overnight)
Aircraft & seat details: Boeing 787 vs 777, seat pitch in inches
Google Flights URLs: direct booking links users can click
Related MCP server: Google Flights MCP Server
What you can ask
"Find nonstop flights from JFK to London next month"
"What's the cheapest week to fly SFO to Tokyo?"
"Compare economy vs business class for LAX to Paris"
"Are there cheaper airports near JFK I should check?"
"Track the price of SFO to NRT on June 15 and alert me if it drops"
"Show me the emissions for flights from SFO to Tokyo"
"Analyze the layovers for connecting flights from SFO to Bangkok"
Quick start
Option 1: npx (no install)
Works immediately with Claude Code:
claude mcp add google-flights -- npx -y google-flights-mcpOr with Claude Desktop, add to your claude_desktop_config.json:
{
"mcpServers": {
"google-flights": {
"command": "npx",
"args": ["-y", "google-flights-mcp"]
}
}
}Option 2: Install from source
git clone https://github.com/andreacappelletti97/google-flights-mcp.git
cd google-flights-mcp
npm install
npm run buildThen connect to Claude Code:
claude mcp add google-flights node /absolute/path/to/google-flights-mcp/dist/index.jsOr Claude Desktop (claude_desktop_config.json):
{
"mcpServers": {
"google-flights": {
"command": "node",
"args": ["/absolute/path/to/google-flights-mcp/dist/index.js"]
}
}
}Restart your MCP client. You should see 12 flight tools available.
Tools (12)
Search
Tool | Description |
| One-way & round-trip search. Returns prices, airlines, durations, stops, aircraft, seat pitch, CO2 emissions, and price context. |
| Multi-leg itinerary search (2-5 segments). |
Price intelligence
Tool | Description |
| Full calendar of daily prices (~60 days) from a single API call. Cheapest dates at a glance. |
| Scan a date range to find cheapest departure dates (multiple API calls for precision). |
| Compare economy, premium economy, business, and first class prices for the same route. |
| Record current price and report trend (dropping/rising/stable). Persists in SQLite. |
| View all recorded price observations for a tracked route. |
| List all routes being price-tracked with last known price. |
Airport tools
Tool | Description |
| Search 8,800+ airports by city, name, IATA code, or country. |
| Find alternative airports within a radius (default: 200km). Uses Haversine distance. |
Utility
Tool | Description |
| Generate a direct Google Flights booking URL. |
| Analyze connection quality for multi-stop flights. Reports risk level, connection type, aircraft. |
Example output
search_flights (with emissions and price context)
Flights from SFO to NRT on 2026-06-15:
Price assessment: HIGH ($294 above typical). Range: $500 - $700, typical: $577
Flight 1: $874 | 11h 15m | 0 stop(s) | CO2: 428kg
ZG 25: SFO -> NRT (11h 15m) [aircraft: Boeing 787, seat pitch: 31 inches, CO2: 428kg]
Flight 2: $1310 | 11h 5m | 0 stop(s) | CO2: 545kg
NH 7: SFO -> NRT (11h 5m) [aircraft: Boeing 777, seat pitch: 34 inches, CO2: 545kg]get_calendar_heatmap
Price calendar: SFO -> NRT
61 days of data
Cheapest: $384 (2026-02-12)
Most expensive: $870 (2026-04-13)
Average: $632
2026-02:
12: $384 ***
13: $384 ***
...
20: $540 ***
2026-03:
06: $609 *
...
20: $689find_nearby_airports
Airports near JFK within 150km:
LGA - LaGuardia Airport (New York, US), 17km away
EWR - Newark Liberty International Airport (Newark, US), 33km away
HPN - Westchester County Airport (White Plains, US), 48km awayHow it works
There is no official Google Flights API. This server reverse-engineers Google's internal FlightsFrontendService endpoint. It extracts not just flights, but hidden metadata: emissions, price assessments, daily price calendars, aircraft types, and seat details.
Reliability
Caching: 5-minute TTL cache, identical searches don't hit Google twice
Retry with backoff: exponential backoff + jitter on 429/5xx errors, honors
Retry-AfterheadersCircuit breaker: stops requests after 5 consecutive failures, auto-recovers after 30s
Structural validation: clear errors when Google changes their response format
TLS mitigation:
undiciwith browser-like headers + rotating User-Agents,fetchfallback
Price tracking
Price history is stored in SQLite at ~/.google-flights-mcp/prices.db. Each call to track_price records the current cheapest price and reports the trend compared to previous observations.
Development
npm install # Install dependencies
npm run build # Build with tsup
npm test # Run tests (85 tests)
npm run lint # ESLint with FP rules (no-let, immutable-data, no-loop-statements)
npm run typecheck # TypeScript strict type checking
npm run check # typecheck + lint + test (the full CI pipeline)
npm run dev # Build in watch modeDesign
Fully functional TypeScript codebase:
No mutation: all types
readonly, nolet/var/.push()/forloopsResult monad: errors are values (
Result<T, E>), not exceptionsPure/IO separation: pure transforms are separate from network and disk IO
Composition:
pipe()+flatMap()for chaining fallible operations
See CLAUDE.md for architecture details and the Google Flights response format reference.
Limitations
No official API: uses an undocumented Google endpoint that could change at any time. Structural validation makes breakages obvious.
Rate limiting: Google may throttle heavy use. Built-in retry and circuit breaker handle transient issues.
Prices are estimates: prices reflect query time; they can change before booking.
Currency: determined by Google based on IP/locale.
Contributing
Fork the repo
Create a feature branch
Make your changes
Run
npm run checkto verifyOpen a PR
License
ISC
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/andreacappelletti97/google-flights-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server