Google-Flights-MCP-Server
Provides tools for searching and retrieving flight information from Google Flights, including one-way flights, round-trip flights, and flight availability within date ranges.
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-MCP-Serverfind cheapest round trip flights from NYC to LA 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 Server
This MCP server provides tools to interact with Google Flights data using the bundled fast_flights library.
Features
Provides the following MCP tools:
get_flights_on_date: Fetches available one-way flights for a specific date between two airports.Args:
origin(str),destination(str),date(str, YYYY-MM-DD),adults(int, optional),seat_type(str, optional),return_cheapest_only(bool, optional, defaultFalse).
get_round_trip_flights: Fetches available round-trip flights for specific departure and return dates.Args:
origin(str),destination(str),departure_date(str, YYYY-MM-DD),return_date(str, YYYY-MM-DD),adults(int, optional),seat_type(str, optional),return_cheapest_only(bool, optional, defaultFalse).
find_all_flights_in_range: Finds available round-trip flights within a specified date range. Can optionally return only the cheapest flight found for each date pair.Args:
origin(str),destination(str),start_date_str(str, YYYY-MM-DD),end_date_str(str, YYYY-MM-DD),min_stay_days(int, optional),max_stay_days(int, optional),adults(int, optional),seat_type(str, optional),return_cheapest_only(bool, optional, defaultFalse).
Related MCP server: searchAPI-mcp
Setup
Clone the repository:
git clone https://github.com/opspawn/Google-Flights-MCP-Server.git cd Google-Flights-MCP-ServerCreate a virtual environment (recommended):
python -m venv .venv source .venv/bin/activate # On Windows use `.venv\Scripts\activate`Install dependencies:
pip install -r requirements.txtInstall Playwright browsers (needed by
fast_flights):playwright install
Running the Server
You can run the server directly using Python:
python server.pyThe server uses STDIO transport by default.
Integrating with MCP Clients (e.g., Cline, Claude Desktop)
Add the server to your MCP client's configuration file. Example for cline_mcp_settings.json or claude_desktop_config.json:
{
"mcpServers": {
"google-flights": {
"command": "/path/to/your/.venv/bin/python", // Use absolute path to venv python
"args": [
"/absolute/path/to/flight_mcp_server/server.py" // Use absolute path to server script
],
"env": {},
"disabled": false,
"autoApprove": []
}
// ... other servers
}
}Important: Replace the paths in command and args with the absolute paths to your virtual environment's Python executable and the server.py script on your system.
Notes
This server bundles the
fast_flightslibrary (originally from https://github.com/AWeirdDev/flights) for its core flight scraping functionality. Please refer to the includedLICENSEfile for its terms.Flight scraping can sometimes be unreliable or slow depending on Google Flights changes and network conditions. The tools include basic error handling.
The
find_all_flights_in_rangetool can be resource-intensive as it checks many date combinations.
Related MCP Servers
- Alicense-qualityBmaintenanceAn MCP (Model Context Protocol) server that provides Google search capabilities and webpage content analysis tools. This server enables AI models to perform Google searches and analyze webpage content programmatically.Last updated61249ISC
- Alicense-qualityDmaintenanceA Model Context Protocol (MCP) based search API server that provides standardized access to Google Maps, Google Flights, Google Hotels and other services. This server enables AI assistants to access various search services through a unified interface.Last updated71MIT
- Flicense-qualityDmaintenanceAn MCP server that provides access to Google's API Discovery Service, allowing agents to discover and interact with Google APIs through natural language commands.Last updated
- Flicense-qualityDmaintenanceThis MCP Server provides a natural language interface to interact with Google's Policy Analyzer API, allowing users to analyze policies and evaluate compliance through conversations.Last updated
Related MCP Connectors
Flight Intelligence MCP — search, cheapest dates, multi-city, airline compare via Google Flights
Geo-based flight search MCP server. Find more flights between any two places on earth
Driflyte MCP server which lets AI assistants query topic-specific knowledge from web and GitHub.
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/opspawn/Google-Flights-MCP-Server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server