Confidential guide on numerology and astrology, based of GG33 Public information

Google-Flights-MCP-Server
Este servidor MCP proporciona herramientas para interactuar con los datos de vuelos de Google utilizando la biblioteca Bundled Fast_Flights.
3 years
Works with Finder
1
Github Watches
0
Github Forks
0
Github Stars
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
).
- Args:
-
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
).
- Args:
-
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
).
- Args:
Setup
-
Clone the repository:
git clone https://github.com/opspawn/Google-Flights-MCP-Server.git cd Google-Flights-MCP-Server
-
Create a virtual environment (recommended):
python -m venv .venv source .venv/bin/activate # On Windows use `.venv\Scripts\activate`
-
Install dependencies:
pip install -r requirements.txt
-
Install Playwright browsers (needed by
fast_flights
):playwright install
Running the Server
You can run the server directly using Python:
python server.py
The 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_flights
library (originally from https://github.com/AWeirdDev/flights) for its core flight scraping functionality. Please refer to the includedLICENSE
file 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_range
tool can be resource-intensive as it checks many date combinations.
相关推荐
Converts Figma frames into front-end code for various mobile frameworks.
Advanced software engineer GPT that excels through nailing the basics.
Take an adjectivised noun, and create images making it progressively more adjective!
Siri Shortcut Finder – your go-to place for discovering amazing Siri Shortcuts with ease
I find academic articles and books for research and literature reviews.
Descubra la colección más completa y actualizada de servidores MCP en el mercado. Este repositorio sirve como un centro centralizado, que ofrece un extenso catálogo de servidores MCP de código abierto y propietarios, completos con características, enlaces de documentación y colaboradores.
Manipulación basada en Micrypthon I2C del expansor GPIO de la serie MCP, derivada de AdaFruit_MCP230xx
Servidor MCP para obtener contenido de la página web con el navegador sin cabeza de dramaturgo.
Un poderoso complemento Neovim para administrar servidores MCP (protocolo de contexto del modelo)
Puente entre los servidores Ollama y MCP, lo que permite a LLM locales utilizar herramientas de protocolo de contexto del modelo
🔍 Habilitar asistentes de IA para buscar y acceder a la información del paquete PYPI a través de una interfaz MCP simple.
🧑🚀 全世界最好的 llM 资料总结(数据处理、模型训练、模型部署、 O1 模型、 MCP 、小语言模型、视觉语言模型) | Resumen de los mejores recursos del mundo.
Reviews

user_A6XhHb7L
I've been using the Google-Flights-MCP-Server by opspawn and it has exceeded my expectations. The server is reliable, efficient, and highly customizable, making it perfect for integrating flight data into my applications. With clear documentation and robust performance, it's an essential tool for any MCP application user. Highly recommended!