About Search Google Flights MCP
Search Google Flights MCP is an MCP server in the Search category: 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. It has been installed 0 times through Conduid.
Install
git clone https://github.com/rbxwilliams/tmcpThis server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.
Ask AI
Ask AI about Search Google Flights MCP
Powered by Claude · Grounded in docs
Security checks
- ·README presentNot checked yet.
- ·License declaredNot checked yet.
- ·Tests presentNot checked yet.
- ·Dependencies pinnedNot checked yet.
- ·No dynamic code executionNot checked yet.
- ·Scoped permissionsNot checked yet.
README
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.
README mirrored from the source repository 4 months ago. The original is authoritative.