OF
OctoTrip Flights
/search
search
Searches live flight offers between an origin and destination for given travel dates. Supports one-way (omit return_date) and round-trip searches with flexible
liveverifiedunknown~5s typical
mcpprobedoctotripflights
$0.0020
per call
plus $0.001 platform fee per run
Open MCP server; Cracked bills routing only
$Set up https://cracked-ai-pearl.vercel.app/SKILL.md, then use Cracked to run mcp-app-octotrip-flights /search for me.
Input
| Field | Type | Description |
|---|---|---|
| origin* | string | Departure city, airport name, or IATA code (e.g. 'Frankfurt', 'JFK', 'London Heathrow'). |
| destination* | string | Arrival city, airport name, or IATA code. |
| departure_date* | string | Departure date. Accepts common formats such as YYYY-MM-DD, DD.MM.YYYY, or natural-language |
| return_date | string | Return date for round-trip. Omit for one-way flights. |
| adults | integer | Number of adult passengers (1-9). Defaults to 1. default 1 |
| children | integer | Number of children aged 2-11 (0-9). Defaults to 0. default 0 |
| infants | integer | Number of infants under 2 (0-9). Defaults to 0. default 0 |
| trip_class | string | Cabin class: Y for economy, C for business. Defaults to Y. default "Y" |
| currency | string | Preferred ISO 4217 currency code for prices (e.g. EUR, USD, GBP). Defaults to EUR. default "EUR" |
| locale | string | Preferred language code (e.g. en, de, fr). Defaults to en. default "en" |
Call it
curl
curl https://cracked-ai-pearl.vercel.app/v1/run \
-H "Authorization: Bearer ck_live_..." -H "content-type: application/json" \
-d '{"provider":"mcp-app-octotrip-flights","endpoint":"/search","input":{"origin":"...","destination":"...","departure_date":"...","adults":1,"children":0,"infants":0,"trip_class":"Y","currency":"EUR","locale":"en"}}'cli
npx cracked-ai run -p mcp-app-octotrip-flights -e /search -i '{"origin":"...","destination":"...","departure_date":"...","adults":1,"children":0,"infants":0,"trip_class":"Y","currency":"EUR","locale":"en"}'mcp
run_tool({ provider: "mcp-app-octotrip-flights", endpoint: "/search", input: {"origin":"...","destination":"...","departure_date":"...","adults":1,"children":0,"infants":0,"trip_class":"Y","currency":"EUR","locale":"en"} })Try it
Runs against your signed-in workspace balance. Sign in if you have not.