Token导航 LogoToken导航TokenDH.com
研究检索external-serviceclawhub未标认证来源可访问clear审计提醒

moltravelmoltravel 搜索

Agent Skill

moltravel 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

11,172

周安装

475

GitHub Stars

公开资料未说明

下载量

3,914
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:moltravel(moltravel 搜索)
来源仓库:https://github.com/simonenavifare/moltravel
安装命令:
openclaw skills install moltravel
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install moltravel

简介

moltravel 用于查找、检索和筛选相关信息。

  • 适合在 OpenClaw 中根据关键词、任务场景或来源线索快速定位候选结果时使用。
  • 通过 clawhub 安装,用于旅行计划、航班搜索和目的地信息查询。
  • 安装前需确认权限范围、维护状态及是否触发联网或数据访问。
  • 注意该技能专门处理旅行相关请求,需验证 API 调用频率限制。

SKILL.md

name
molttravel
description
Use this skill when the user asks about travel planning, trip research, flight searches, visa requirements, airport/airline lookups, destination info, travel safety, or activities at a destination. Also trigger when users ask "plan a trip", "find flights", "do I need a visa", "what's there to do in [city]", or anything related to international travel logistics. Requires the MolTravel MCP server.
version
1.0.0
license
MIT
metadata
author
navifare
category
travel
mcp_required
molttravel
allowed-tools
mcp__molttravel__* Read

MolTravel — The Travel Agent for AI Agents

You have access to the MolTravel MCP server, a unified travel planning platform with 21+ tools across flights, activities, airports, airlines, visas, country info, and travel advisories. All tools are available through a single MCP endpoint with no authentication required.

MCP Configuration

The server should already be configured. If tools are unavailable, add this:

{
  "mcpServers": {
    "molttravel": {
      "url": "https://mcp.molttravel.com/mcp"
    }
  }
}

Tool Reference

Tools are prefixed by provider. Use ToolSearch with keywords to discover them.

Flights & Pricing

ToolWhat it does
kiwi_search-flightSearch flights. Params: flyFrom, flyTo, departureDate (dd/mm/yyyy), returnDate, cabinClass (M/W/C/F), curr, sort, passengers
navifare_format_flight_pricecheck_requestParse a natural-language flight description into structured data. Param: user_request (string with all flight details)
navifare_flight_pricecheckCompare prices across booking sites. Pass the structured output from the format tool

Experiences & Activities (Peek.com)

ToolWhat it does
peek_search_experiencesSearch 300K+ activities. Use location for city, query for activity type, regionId for precision
peek_experience_detailsFull details for an experience by ID
peek_experience_availabilityCheck pricing and availability for specific dates
peek_search_regionsFind Peek region IDs by city/area name
peek_list_tagsBrowse activity categories

Airports & Airlines

ToolWhat it does
airports_lookupIATA (3-char) or ICAO (4-char) code lookup
airports_searchSearch by name/city, filter by country or type_filter
airports_nearFind airports within radius_km of lat/lon coordinates
airlines_lookupIATA (2-char) or ICAO (3-char) code lookup
airlines_searchSearch by name, filter by country, active_only

Visa & Country Info

ToolWhat it does
visa_checkCheck visa requirement. Accepts country names, ISO codes, or aliases (USA, UK, UAE)
visa_summaryFull breakdown: visa-free, VOA, e-visa, required — for a passport
restcountries_country_infoCapital, currencies, languages, timezones, population, borders
fcdo_travel_adviceUK FCDO safety advisories, entry requirements, health. Use lowercase hyphenated country_slug (e.g. united-arab-emirates)
fcdo_list_countriesList all countries with FCDO advisories

Master Tool (if available)

ToolWhat it does
travel_agentNatural language query — auto-routes to the right tools. Only available when server has Gemini configured

Core Workflows

Flight Search + Price Verification

Always follow this 3-step pipeline when searching flights:

Step 1: Search flights

kiwi_search-flight:
  flyFrom: "ZRH"
  flyTo: "NRT"
  departureDate: "15/06/2026"     # MUST be dd/mm/yyyy
  returnDate: "22/06/2026"
  cabinClass: "M"                  # M=economy, W=premium, C=business, F=first
  curr: "CHF"                      # Match origin country currency
  sort: "price"

Step 2: Format the best result for price checking

navifare_format_flight_pricecheck_request:
  user_request: "Swiss LX160 Zurich ZRH to Tokyo NRT June 15 2026
    departing 13:00 arriving 08:00 next day, return LX161 NRT to ZRH
    June 22 2026 departing 10:30 arriving 16:00, 580 CHF, 1 adult economy"

Include in user_request: airline code, flight number, both airports, both dates, departure/arrival times, price, currency, passengers, class.

Step 3: Cross-check prices

navifare_flight_pricecheck:
  (pass the exact flightData object returned from step 2)

This takes 30-60 seconds. Present results as a ranked comparison table with booking links and savings vs. the original price.

Trip Planning (comprehensive)

When a user asks about a trip to a destination, run these in parallel:

  1. kiwi_search-flight — find flights
  2. visa_check — do they need a visa?
  3. restcountries_country_info — currency, language, timezone
  4. fcdo_travel_advice — safety and entry requirements
  5. peek_search_experiences — things to do

Then follow up with the flight price-check pipeline (steps 2-3 above).

Destination Research (no flights)

When the user asks about a destination without mentioning flights:

  1. restcountries_country_info — basics
  2. fcdo_travel_advice — safety
  3. peek_search_experiences — activities
  4. visa_check — if passport country is known or can be inferred

Smart Defaults

When the user omits details, fill in sensible defaults:

FieldDefault
Passengers1 adult
Cabin classEconomy (M)
SortPrice (cheapest first)
CurrencyInfer from origin: LHR→GBP, BER→EUR, ZRH→CHF, JFK→USD, NRT→JPY, SYD→AUD, DXB→AED, CDG→EUR
DatesCompute actual dd/mm/yyyy from relative phrases ("next week", "in June")
AirportPick the main airport for a city (London→LHR, Paris→CDG, Tokyo→NRT, New York→JFK)

Presenting Results

Flight Results

  • Show top 3-5 results in a table: price, airline, times, duration, stops, booking link
  • Highlight the cheapest option
  • After price-check: show comparison table with savings percentage

Price Comparison

Your search: 580 CHF on Kiwi.com
Best price found: 545 CHF on eSky
Savings: 35 CHF (6%)

| # | Website | Price | Fare Type |
|---|---------|-------|-----------|
| 1 | eSky | 545 CHF | Standard |
| 2 | eDreams | 552 CHF | Standard |
| 3 | Google Flights | 580 CHF | Standard |

Visa Results

State clearly: visa-free, visa on arrival, e-visa required, or visa required. Include any day limits.

Country Info

Present key facts: capital, currency (with symbol), languages, timezone, population, region. Keep it concise.

Activities

Show top 3-5 with name, rating, price range, and booking link.

Important Notes

  • Kiwi dates: MUST be dd/mm/yyyy (not ISO). This is the most common error.
  • Navifare is round-trip only: One-way flights are not supported for price checking.
  • Price check takes time: 30-60 seconds is normal. Tell the user it's searching.
  • FCDO slugs: Lowercase hyphenated country names (e.g. south-korea, united-arab-emirates).
  • Visa tool: Accepts "Switzerland", "CH", "USA", "UK", "UAE" — flexible input.
  • Peek queries: Keep query param short (1-2 words like "food", "boat tour"). Use location for the city name.
  • Don't book: Never attempt to complete a booking. Provide comparison and links only.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

83.33%
按下载量换算3,262

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

未展示

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills