Google-Flights-MCP-Server
Google 항공편 MCP 서버
이 MCP 서버는 fast_flights 라이브러리를 사용하여 Google Flights 데이터와 상호 작용할 수 있는 도구를 제공합니다.
특징
다음 MCP 도구를 제공합니다.
get_flights_on_date: 두 공항 간 특정 날짜에 이용 가능한 편도 항공편을 가져옵니다.인수:
origin(str),destination(str),date(str, YYYY-MM-DD),adults(int, 선택 사항),seat_type(str, 선택 사항),return_cheapest_only(bool, 선택 사항, 기본값False).
get_round_trip_flights: 특정 출발 및 복귀 날짜에 대한 이용 가능한 왕복 항공편을 가져옵니다.인수:
origin(문자열),destination(문자열),departure_date(문자열, YYYY-MM-DD),return_date(문자열, YYYY-MM-DD),adults(정수, 선택 사항),seat_type(문자열, 선택 사항),return_cheapest_only(부울, 선택 사항, 기본값False).
find_all_flights_in_range: 지정된 날짜 범위 내에서 이용 가능한 왕복 항공편을 찾습니다. 각 날짜 쌍에서 찾은 가장 저렴한 항공편만 반환할 수도 있습니다.인수:
origin(문자열),destination(문자열),start_date_str(문자열, YYYY-MM-DD),end_date_str``min_stay_days문자열, YYYY-MM-DD), 최소_숙박_일(정수, 선택 사항),max_stay_days(정수, 선택 사항),adults(정수, 선택 사항),seat_type(문자열, 선택 사항),return_cheapest_only(부울, 선택 사항, 기본값False).
Related MCP server: searchAPI-mcp
설정
저장소를 복제합니다.
지엑스피1
가상 환경을 만듭니다(권장):
python -m venv .venv source .venv/bin/activate # On Windows use `.venv\Scripts\activate`종속성 설치:
pip install -r requirements.txtPlaywright 브라우저를 설치하세요(
fast_flights에 필요):playwright install
서버 실행
Python을 사용하여 서버를 직접 실행할 수 있습니다.
python server.py서버는 기본적으로 STDIO 전송을 사용합니다.
MCP 클라이언트(예: Cline, Claude Desktop)와 통합
MCP 클라이언트 구성 파일에 서버를 추가합니다. cline_mcp_settings.json 또는 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
}
}중요: command 및 args 의 경로를 가상 환경의 Python 실행 파일과 시스템의 server.py 스크립트에 대한 절대 경로로 바꾸세요.
노트
이 서버는 핵심 항공편 스크래핑 기능을 위해
fast_flights라이브러리(원래 https://github.com/AWeirdDev/flights 에서 가져옴)를 번들로 제공합니다. 자세한 내용은 포함된LICENSE파일을 참조하세요.Google Flights 변경 사항 및 네트워크 상태에 따라 항공편 스크래핑이 불안정하거나 느릴 수 있습니다. 이 도구에는 기본적인 오류 처리 기능이 포함되어 있습니다.
find_all_flights_in_range도구는 많은 날짜 조합을 확인하므로 리소스를 많이 사용할 수 있습니다.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
No tool schema history has been recorded yet.
Related MCP Connectors
Flight search MCP server providing search, pagination, and itinerary details for AI assistants.
Search and compare flight offers through a cache-aware Streamable HTTP MCP server for AI agents.
Google Flights search data: fares, routes, stops, and price insights via a hosted MCP server.
Flight Intelligence MCP — search, cheapest dates, multi-city, airline compare via Google Flights
Related MCP Servers
- AlicenseNot gradedqualityAmaintenanceAn 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.27256ISC
- AlicenseNot gradedqualityDmaintenanceA 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.73MIT
- FlicenseNot gradedqualityDmaintenanceAn MCP server that provides access to Google's API Discovery Service, allowing agents to discover and interact with Google APIs through natural language commands.-
- FlicenseNot gradedqualityDmaintenanceThis 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.-
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