Search Google Flights MCP
Search Google Flights-style itineraries with simple MCP tools for route lookup, date-range discovery, and flexible travel planning. This server provides: - `search_flights` for point-to-point flight search - `search_dates` for finding cheaper travel windows - helper prompts for direct flights and budget-date discovery - a configuration resource for defaults and environment settings Built for agents that need a clean flight-search MCP surface with structured responses.
Ask AI about Search Google Flights MCP
Powered by Claude · Grounded in docs
I know everything about Search Google Flights MCP. Ask me about installation, configuration, usage, or troubleshooting.
0/500
Reviews
Documentation
tmcp
JavaScript MCP server for flight search.
This repo exposes a Fli-compatible MCP surface:
- tools:
search_flights,search_dates - prompts:
search-direct-flight,find-budget-window - resource:
resource://fli-mcp/configuration
The flight search backend is intentionally not implemented yet. Tool calls validate inputs and then fail cleanly with a structured error response, which keeps the MCP contract usable while the search implementation is still missing.
Run
npm start
Run HTTP
npm run start:http
Test
npm test
MCP Client Config
{
"mcpServers": {
"fli": {
"command": "node",
"args": ["/Users/haritabhsingh/exa9/tmcp/bin/fli-mcp.js"]
}
}
}
Exposed Surface
- tools:
search_flights,search_dates - prompts:
search-direct-flight,find-budget-window - resource:
resource://fli-mcp/configuration
HTTP Mode
npm run start:http serves JSON-RPC at http://127.0.0.1:8000/mcp/.
You can override the bind address with HOST and PORT.
