[不可用] 机票预订功能正在开发中,暂不可用。请勿调用 mx_flights 工具。
此功能正在开发中,暂不可用。 请勿调用
mx_flights工具,所有请求将被拒绝。机票预订功能将在未来版本中启用。
通过 mx_flights 工具搜索航班、比价、预订机票和管理订单。基于 Duffel API,支持全球主流航司。
openclaw plugins install openclaw-morphixaimk_xxxxxx 密钥export MORPHIXAI_API_KEY="mk_your_key_here"查找机场/城市 IATA 代码:
mx_flights:
action: search_airports
query: "london"
返回机场列表,包含 IATA 代码(如 LHR、LON)。
单程航班:
mx_flights:
action: search_flights
slices:
- origin: "PVG"
destination: "NRT"
departure_date: "2026-07-01"
passengers:
- type: "adult"
cabin_class: "economy"
往返航班:
mx_flights:
action: search_flights
slices:
- origin: "LHR"
destination: "JFK"
departure_date: "2026-06-01"
- origin: "JFK"
destination: "LHR"
departure_date: "2026-06-15"
passengers:
- type: "adult"
- type: "adult"
- type: "child"
age: 8
cabin_class: "economy"
max_connections: 1
搜索结果返回 offer_request_id 和 offers 列表。每个 offer 包含价格、航司、航段、行李额度等信息。
mx_flights:
action: list_offers
offer_request_id: "orq_0000AgqMVBMwzBMOeE6L7Y"
limit: 20
sort: "total_amount"
预订前必须调用此操作,确保价格未变:
mx_flights:
action: get_offer
offer_id: "off_0000AgqMVLkQ8X3p3rmHYC"
mx_flights:
action: get_seat_maps
offer_id: "off_0000AgqMVLkQ8X3p3rmHYC"
收集乘客信息后下单:
mx_flights:
action: create_order
offer_id: "off_0000AgqMVLkQ8X3p3rmHYC"
type: "instant"
passengers:
- id: "pas_0000AgqMV123"
given_name: "John"
family_name: "Doe"
born_on: "1990-05-15"
gender: "m"
title: "mr"
email: "[email protected]"
phone_number: "+442080160509"
identity_documents:
- type: "passport"
unique_identifier: "P12345678"
issuing_country_code: "GB"
expires_on: "2030-01-01"
type: "instant" 立即付款,"pay_later" 先占座后付款passengers[].id 必须使用搜索结果中 offer 的 passengers 数组里的 IDmx_flights:
action: list_orders
status: "confirmed"
limit: 10
mx_flights:
action: get_order
order_id: "ord_0000AgqMV123"
返回 booking_reference(航司 PNR),乘客可用此编号在航司官网办理值机。
对 pay_later 类型的订单进行支付:
mx_flights:
action: pay_order
order_id: "ord_0000AgqMV123"
mx_flights:
action: cancel_order
order_id: "ord_0000AgqMV123"
退款政策取决于航司条件(可在 offer 的 conditions 中查看)。
通过支付链接让用户在安全页面输入信用卡信息(PCI 合规):
1. 搜索机场: search_airports, query: "上海" → 获取 IATA 代码 (PVG/SHA)
2. 搜索航班: search_flights → 获取 offers 列表
3. 确认价格: get_offer, offer_id: "off_xxx" → 验证最新价格
4. 收集乘客信息(通过对话逐项引导)
5. 创建支付会话: create_payment_session → 获取 payment_url
6. 将 payment_url 展示给用户,引导点击支付
7. 用户完成支付后: list_orders 或 get_order 确认出票结果
1. 搜索机场: search_airports, query: "上海" → 获取 IATA 代码 (PVG/SHA)
2. 搜索航班: search_flights → 获取 offers 列表
3. 确认价格: get_offer, offer_id: "off_xxx" → 验证最新价格
4. 预订下单: create_order → 创建订单
5. 查看状态: get_order, order_id: "ord_xxx" → 获取 booking_reference
如果需要用户信用卡直接付款,Agent 通过 create_payment_session 生成支付链接:
create_payment_session 生成支付链接list_orders 确认出票mx_flights:
action: create_payment_session
offer_id: "off_0000AgqMVLkQ8X3p3rmHYC"
passengers:
- id: "pas_0000AgqMV123"
given_name: "John"
family_name: "Doe"
born_on: "1990-05-15"
gender: "m"
title: "mr"
email: "[email protected]"
phone_number: "+442080160509"
identity_documents:
- type: "passport"
unique_identifier: "P12345678"
issuing_country_code: "GB"
expires_on: "2030-01-01"
返回值包含 payment_url(展示给用户点击)、expires_at(支付链接有效期)和 offer_summary(订单摘要)。
展示支付链接时应包含:
payment_url(原样展示,不可修改)offer_summary 中的值)total_amount 已包含加价,这是展示给用户的最终价格expires_at),过期后需重新搜索phone_number 使用 E.164 格式(如 "+8613800138000")文档与源码:GitHub