com um clique
flights
[不可用] 机票预订功能正在开发中,暂不可用。请勿调用 mx_flights 工具。
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Menu
[不可用] 机票预订功能正在开发中,暂不可用。请勿调用 mx_flights 工具。
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Baseado na classificação ocupacional SOC
[不可用] Figma 集成功能正在开发中,暂不可用。请勿调用 mx_figma 工具。
Confluence Cloud 集成。空间/页面 CRUD、标签、评论、子页面、CQL 搜索。通过 MorphixAI 代理安全访问 Confluence Cloud API(v2 CRUD + v1 搜索)。
每日早报聚合器。当用户询问每日汇总、standup、晨报、或工作状态总览时激活。
GitHub 集成。管理仓库、Issue、Pull Request 和 GitHub Actions 工作流。通过 MorphixAI 代理安全访问 GitHub API。
GitLab 工作流助手,严格遵循团队规范。用于 MR 管理、代码审查、CI/CD 状态查询、分支管理和合并操作。通过 MorphixAI 代理安全访问 GitLab API。
[暂不可用] Gmail 邮件集成。收发邮件、搜索邮件、管理标签。通过 MorphixAI 代理安全访问 Gmail API。
| name | flights |
| description | [不可用] 机票预订功能正在开发中,暂不可用。请勿调用 mx_flights 工具。 |
| metadata | {"openclaw":{"emoji":"🚫","requires":{"env":["MORPHIXAI_API_KEY"]}}} |
此功能正在开发中,暂不可用。 请勿调用
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: "john@example.com"
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: "john@example.com"
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