Hosted MCP endpoint
Flight MCP server for AI agents
Give your agent live flight prices and booking links over Streamable HTTP. No local server. No scraping stack. Cloud clients use OAuth; local clients can use an API key.
- Live one-way and round-trip fares
- Booking URLs in every result
- Airport lookup built in
- 1,000 free account requests
Agent flow
From prompt to booking link
User
Asks for a real trip
plain-language request
Route
Turns it into airport codes
cities become airport codes
search_flights
Searches live fares
one-way or round-trip
Result
Returns a bookable option
price plus checkout link
Agent flow
From prompt to booking link
User
Asks for a real trip
plain-language request
Route
Turns it into airport codes
cities become airport codes
search_flights
Searches live fares
one-way or round-trip
Result
Returns a bookable option
price plus checkout link
One hosted endpoint. Two flight tools.
Ignav exposes the flight workflow agents actually need: resolve where the user means, search live fares, and hand back a booking URL the user can open.
search_airports
Resolve cities, airport names, metro areas, and IATA codes before searching.
search_flights
Search one-way or round-trip fares and return itineraries with booking URLs.
Use it from the client you already have
ChatGPT and Claude use OAuth. Grok web, local clients, and agent IDEs can use your API key.
ChatGPT
ConnectorMCP server URL
https://ignav.com/mcp
Authentication
OAuthClaude
ConnectorMCP server URL
https://ignav.com/mcp
Authentication
OAuthGrok
Basic URLMCP server URL
https://ignav:YOUR_API_KEY@ignav.com/mcpClaude Code
CLIclaude mcp add --transport http ignav https://ignav.com/mcp \
--header "Authorization: Bearer $IGNAV_API_KEY"Cursor
mcp.json{
"mcpServers": {
"ignav": {
"url": "https://ignav.com/mcp",
"headers": {
"Authorization": "Bearer YOUR_API_KEY"
}
}
}
}Codex
CLIcodex mcp add ignav --url https://ignav.com/mcp \
--bearer-token-env-var IGNAV_API_KEYBuilt for real travel workflows
This is not a flight-status toy. The server returns live fare results and booking links so an assistant can move from idea to bookable itinerary.
- AI travel agents that need live fares
- Popular MCP clients and agent IDEs
- Trip-planning flows that need real booking links
- Apps that want hosted flight search without running a local server
Give your agent live flights
Connect with OAuth from cloud clients, or create an API key for local tools.
1,000 free requests. Then $2 per 1,000 successful requests.