Travelpayouts

live TravelFlights

Travelpayouts MCP — cached cheapest-flight price data: cheap tickets by route, price calendars, month matrices, and popular destinations from a city. BYO Travelpayouts token.

4 tools
0ms auth
free tier 50 calls/day

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

Test with curl

The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/travelpayouts/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
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.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("travelpayouts_cheap_prices", {});
ask_pipeworx
// 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):