Install
openclaw skills install @yorkluai-lab/rollinggo-searchflight-skillFlight search and pricing via the RollingGo Flight MCP. Use when the user wants to search flights by origin, destination, date, passenger count, cabin class, city/airport code, or compare real-time flight options and prices. Trigger phrases — "search flights", "find flights", "flight price", "cheap flights", "flight comparison", "机票", "查航班", "查机票", "航班价格", "rollinggo".
openclaw skills install @yorkluai-lab/rollinggo-searchflight-skill✅ Use this skill when:
❌ Don't use this skill when:
Resolution order: --api-key flag → RollingGo_API_KEY env var. No key yet? Apply at: https://rollinggo.store/apply
This skill uses a remote MCP server (streamable_http), not a local CLI runtime. The MCP server is registered automatically by the skill host — no manual configuration or local install is needed.
Load references/rollinggo-mcp.md and keep it for the session.
No API key is required for the public endpoint.
The remote MCP endpoint is the source of truth. Do not invent local package versions or CLI commands.
Before making claims about newly added tools or booking/payment capabilities, check the latest MCP documentation or the live MCP tool list.
Run these steps in order unless the user is already at a later step.
searchAirports first.cityCode for broad city-level searches and airportCode when the user explicitly names a specific airport.searchFlights with the resolved codes and passenger/cabin/date parameters.flightInformationList and compare options by price, time, directness, duration, and fromSmartValueScore (higher = better value).searchAirports — resolve city or airport names to codes
{ "keyword": "杭州" }
searchFlights — search available flights (one-way example)
{
"adultNumber": 1,
"childNumber": 0,
"cabinGrade": "ECONOMY",
"fromCity": "HGH",
"toCity": "CTU",
"fromDate": "2026-05-01",
"tripType": "ONE_WAY"
}
Round-trip: add "retDate": "YYYY-MM-DD" and set "tripType": "ROUND_TRIP".
Specific airport: replace fromCity/toCity with fromAirport/toAirport.
adultNumber and childNumber are required. Use childNumber: 0 when there are no children.cabinGrade must be one of: ECONOMY, PREMIUM_ECONOMY, BUSINESS, FIRST.tripType must be one of: ONE_WAY, ROUND_TRIP.fromDate and retDate must use YYYY-MM-DD.retDate is required when tripType=ROUND_TRIP and must be later than fromDate.fromCity or fromAirport (not both).toCity or toAirport (not both).fromCity / toCity to cover multiple airports.fromAirport / toAirport.ECONOMY when the user does not specify.MCP response structure:
message: human-readable status string (e.g. "航班搜索成功")flightInformationList: array of flight optionsWhen presenting flights, include for each option:
stopCities field; empty string means direct)validatingCarrier)fromSmartValueScore as a tiebreaker (0–100, higher = better value)Always add a note that flight prices and inventory can change in real time and final availability should be rechecked before booking.
Try in order: switch specific airport code to city code → try nearby airport/city matches from searchAirports → broaden cabin preference to ECONOMY only if user allows → ask whether the user can change date or time window.
If results exist but quality is low → sort by fromSmartValueScore descending before presenting.
Current documented MCP capability covers airport search and flight search. Do not claim the skill can complete payment, issue tickets, cancel/refund/change orders, manage bookings, or verify baggage rules unless a corresponding tool is added later.