Travelpayouts
live TravelFlightsTravelpayouts MCP — cached cheapest-flight price data: cheap tickets by route, price calendars, month matrices, and popular destinations from a city. BYO Travelpayouts token.
Tools
travelpayouts_cheap_prices Get the cheapest cached flight tickets for a route (one per destination, cheapest first).
No parameters required.
Try it
travelpayouts_price_calendar Get the cheapest ticket price for each day of a month for a route (a price calendar).
No parameters required.
Try it
travelpayouts_cheapest_by_month Get the cheapest ticket price for each day of a month grouped by number of transfers (month matrix).
No parameters required.
Try it
travelpayouts_popular_destinations Get the most popular destinations (with cheapest cached prices) reachable from a city.
No parameters required.
Try it
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
curl -X POST https://gateway.pipeworx.io/travelpayouts/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' curl -X POST https://gateway.pipeworx.io/travelpayouts/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"travelpayouts_cheap_prices","arguments":{}}}' Use with the SDK
Install @pipeworx/sdk to call tools from any TypeScript/Node project.
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("travelpayouts_cheap_prices", {}); // Or ask in plain English:
const answer = await px.ask("travelpayouts mcp — cached cheapest-flight price data: cheap tickets by route, price calendars, month matrices, and popular destinations from a city"); Related packs
Other Pipeworx packs in the same categories (Travel, Flights):