Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"google-flights-mcp-server": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A comprehensive Model Context Protocol (MCP) Server for Google Flights integration, built with C# .NET 8.0. This solution includes a Web API with search history tracking, real-time flight scraping, and IP address logging.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in maps / data
Query and manage PostgreSQL databases directly from AI assistants
🔥 Official Firecrawl MCP Server - Adds powerful web scraping and search to Cursor, Claude and any other LLM clients.
Manage Supabase projects — databases, auth, storage, and edge functions
Real-time financial market data: stocks, forex, crypto, commodities, and economic indicators
MCP Security Weekly
Get CVE alerts and security updates for Google Flights MCP Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A comprehensive Model Context Protocol (MCP) Server for Google Flights integration, built with C# .NET 8.0. This solution includes a Web API with search history tracking, real-time flight scraping, and IP address logging.
Google-Flights-MCP-Server/
├── GoogleFlights.Core/ # Shared models, entities, and core business logic
│ ├── Services/
│ │ ├── IFlightSearchService.cs
│ │ └── FlightSearchService.cs # Main scraping logic using Playwright
│ ├── Models/ # Core data models
│ └── Helpers/ # Date and Price helpers
├── GoogleFlightsApi/ # Web API Project (ASP.NET Core)
│ ├── Controllers/ # API endpoints (Flights, History, Health)
│ ├── Data/ # EF Core DbContext and Entities
│ ├── Services/ # API-specific services (Tracking, History)
│ └── Middleware/ # Request logging middleware
├── GoogleFlightsMcp/ # Console MCP Server
│ ├── Mcp/ # MCP Protocol implementation
│ └── Tools/ # MCP Tool definitions
├── GoogleFlightsApi.Tests/ # Unit and Integration tests
│ ├── Services/ # Service unit tests
│ └── Integration/ # API integration tests
├── docker/ # Dockerfile
├── docker-compose.yml # Multi-container setup
└── GoogleFlightsMcp.sln # Solution file
git clone https://github.com/tdav/Google-Flights-MCP-Server.git
cd Google-Flights-MCP-Server
dotnet restore
dotnet build
# Install Playwright CLI tool if not already installed
dotnet tool install --global Microsoft.Playwright.CLI
# Install Chromium browser
powershell -ExecutionPolicy Bypass -File GoogleFlightsMcp/bin/Debug/net8.0/playwright.ps1 install chromium
cd GoogleFlightsApi
dotnet run
First, update appsettings.json with your connection string:
{
"ConnectionStrings": {
"DefaultConnection": "Host=localhost;Database=google_flights;Username=postgres;Password=yourpassword"
}
}
Then run:
cd GoogleFlightsApi
dotnet ef database update # A
... [View full README on GitHub](https://github.com/tdav/Google-Flights-MCP-Server#readme)