Kiwi.com
@Kiwi.com
About Kiwi.com
Kiwi.com is a travel platform known for flexible flight search across airlines and routes. Its remote MCP server brings flight search into assistant conversations so itineraries can be explored, compared, and handed off for booking.
Connection details
https://mcp.kiwi.comSetup
claude mcp add kiwi --transport http https://mcp.kiwi.comTools
2# Search for flights Searches Kiwi.com for available flights between two locations for the given dates and passengers. City or airport names are resolved automatically, so call this whenever the user wants to search for flights — whether they gave IATA codes or just place names. ## Result shape Returns `{ query, currency, passengers, resultsCount, itineraries, searchTimeMs }`. Each item in `itineraries` has: - `price` (number) and `priceFormatted` (e.g. "123 EUR") - `totalDurationSeconds` - `bookingUrl` — the link to book the flight - `outbound` (and `inbound` for return flights), each a leg with: `route` (list of airport codes including layovers, e.g. ["PRG","MAD","BCN"]), `departureTime` / `arrivalTime` (local ISO timestamps), `durationSeconds`, `stops`, `cabinClass`, and a `segments` list. ## How to display Render a markdown table. Group results into cheapest (lowest `price`), shortest (lowest `totalDurationSeconds`), and other notable options. For each itinerary show, in order: - Route: join `outbound.route` with " → " (e.g. "PRG → MAD → BCN"); for return flights show `inbound.route` on a second line. - Times & duration: `outbound.departureTime` → `outbound.arrivalTime` (local), formatted readably (e.g. "12 Jun 06:05 → 09:30 (3h 25m)") using `outbound.durationSeconds`; add the `inbound` equivalents for return flights. - Cabin: `outbound.cabinClass` (e.g. "Economy"). - Price: `priceFormatted`. - Booking link: `bookingUrl`. Finally, summarise the best price and the shortest option, give a recommendation, and end wishing the user a nice trip with a short fun fact about the destination!
Send feedback, bug reports, or feature requests to the Kiwi.com MCP server developers. Include any relevant details such as error messages, logs, or context that would help the developers understand the issue or suggestion.
Frequently asked questions
What is the Kiwi.com remote MCP server?
The Kiwi.com remote MCP server is a hosted Model Context Protocol endpoint at https://mcp.kiwi.com, so AI assistants can connect to it without installing or running anything locally.
How do I connect to the Kiwi.com MCP server?
Add the endpoint https://mcp.kiwi.com to any MCP-compatible client such as Claude Code, Cursor, or VS Code. The setup snippets on this page configure each client in one step.
Does the Kiwi.com MCP server require authentication?
No. Kiwi.com's MCP server does not require authentication — you can connect directly with the endpoint URL.
Which transport does the Kiwi.com MCP server use?
Kiwi.com exposes a Streamable HTTP endpoint, the transport used by remote MCP servers and supported by all major MCP clients.
Basic information
Comments