jinko-flight-search

Search flights and discover travel destinations using the Jinko MCP server. Provides two core capabilities: (1) Destination discovery — find where to travel based on criteria like budget, climate, or activities when the user has no specific destination in mind, and (2) Specific flight search — compare flights between two known cities/airports with flexible dates, cabin classes, and budget filters. Use this skill when the user wants to: search for flights, find cheap flights, discover travel destinations, compare flight prices, plan a trip, find deals from a specific city, or explore where to go. Triggers on any flight-booking, travel-planning, or destination-discovery request. Requires the Jinko MCP server connected at https://mcp.gojinko.com.

7 stars

Best use case

jinko-flight-search is best used when you need a repeatable AI agent workflow instead of a one-off prompt.

Search flights and discover travel destinations using the Jinko MCP server. Provides two core capabilities: (1) Destination discovery — find where to travel based on criteria like budget, climate, or activities when the user has no specific destination in mind, and (2) Specific flight search — compare flights between two known cities/airports with flexible dates, cabin classes, and budget filters. Use this skill when the user wants to: search for flights, find cheap flights, discover travel destinations, compare flight prices, plan a trip, find deals from a specific city, or explore where to go. Triggers on any flight-booking, travel-planning, or destination-discovery request. Requires the Jinko MCP server connected at https://mcp.gojinko.com.

Teams using jinko-flight-search should expect a more consistent output, faster repeated execution, less prompt rewriting.

When to use this skill

  • You want a reusable workflow that can be run more than once with consistent structure.

When not to use this skill

  • You only need a quick one-off answer and do not need a reusable workflow.
  • You cannot install or maintain the underlying files, dependencies, or repository context.

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/jinko-flight-search/SKILL.md --create-dirs "https://raw.githubusercontent.com/Demerzels-lab/elsamultiskillagent/main/public/skills/kevinjinko/jinko-flight-search/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/jinko-flight-search/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How jinko-flight-search Compares

Feature / Agentjinko-flight-searchStandard Approach
Platform SupportNot specifiedLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

Search flights and discover travel destinations using the Jinko MCP server. Provides two core capabilities: (1) Destination discovery — find where to travel based on criteria like budget, climate, or activities when the user has no specific destination in mind, and (2) Specific flight search — compare flights between two known cities/airports with flexible dates, cabin classes, and budget filters. Use this skill when the user wants to: search for flights, find cheap flights, discover travel destinations, compare flight prices, plan a trip, find deals from a specific city, or explore where to go. Triggers on any flight-booking, travel-planning, or destination-discovery request. Requires the Jinko MCP server connected at https://mcp.gojinko.com.

Where can I find the source code?

You can find the source code on GitHub using the link provided at the top of the page.

SKILL.md Source

# Jinko Flight Search

Search flights and discover destinations via the Jinko MCP server (`find_destination` and `find_flight` tools).

## MCP Connection

Connect the Jinko MCP server in Claude's settings or project integrations using this URL:

```
https://mcp.gojinko.com
```

This provides two tools: `Jinko:find_destination` and `Jinko:find_flight`.

## Tool Selection

1. **User knows origin AND destination city** → Use `find_flight`
2. **User wants destination ideas, doesn't know where to go, or specifies criteria (beach, warm, ski, cheap…)** → Use `find_destination`
3. **User asks for the cheapest dates to a single known destination** → Use `find_flight`

## Tool 1: `find_destination` — Discover Where to Go

Use when the user is exploring options and hasn't committed to a single destination city.

### Required Parameters

- `origins` — Array of IATA codes for ALL nearby airports at the user's origin.
- `trip_type` — `"roundtrip"` (default) or `"oneway"` (only when user explicitly says one-way).

### Optional Parameters

| Parameter | Use when |
|---|---|
| `destinations` | User mentions a region, criteria, or list of candidate cities. Generate IATA codes matching the intent. Leave empty for global discovery ("anywhere", "surprise me"). |
| `departure_dates` / `departure_date_ranges` | User specifies dates or periods. All dates MUST be in the future. |
| `return_dates` / `return_date_ranges` | User specifies return windows. |
| `stay_days` / `stay_days_range` | User mentions trip length ("a week", "5-10 days"). |
| `max_price` | User mentions a budget. |
| `direct_only` | User asks for nonstop/direct flights. |
| `cabin_class` | `"economy"`, `"premium_economy"`, `"business"`, or `"first"`. |
| `currency` | ISO 4217 code matching user's locale. |
| `locale` | e.g. `"en-US"`, `"fr-FR"`. |
| `sort_by` | `"lowest"` (default) or `"recommendation"`. |

### Airport Identification — Critical

Always expand a city to ALL its airports:

- New York → `["JFK","LGA","EWR"]`
- London → `["LHR","LGW","STN","LTN","LCY"]`
- Paris → `["CDG","ORY"]`
- Tokyo → `["NRT","HND"]`
- Chicago → `["ORD","MDW"]`
- Los Angeles → `["LAX"]`
- San Francisco / SFO → `["SFO"]`

### Destination Generation — Critical

When users describe criteria, generate matching IATA codes before calling the tool:

- "Beach" → `["MIA","SAN","HNL","CUN","PUJ","SJU","NAS","MBJ"]`
- "Asia" → `["NRT","HND","ICN","PVG","PEK","HKG","SIN","BKK","KUL","MNL"]`
- "European capitals" → `["LHR","CDG","FRA","MAD","FCO","AMS","BRU","VIE","PRG","CPH"]`
- "Ski" → `["DEN","SLC","ZRH","INN","GVA","TRN"]`
- "Warm in winter" → `["MIA","MCO","SAN","PHX","HNL","CUN","PUJ","PTY","LIM","GIG"]`

### When to Re-call

Re-call `find_destination` when the user changes destination criteria, dates, or asks to explore different options — especially when they are already viewing the widget in fullscreen.

### Examples

| User says | origins | destinations | other params |
|---|---|---|---|
| "Where should I travel from NYC next month?" | `["JFK","LGA","EWR"]` | `[]` (global) | `departure_date_ranges` for next month |
| "Cheap flights from SF to Europe under $800" | `["SFO"]` | European airports | `max_price: 800` |
| "Somewhere warm from Chicago, 1 week in Dec" | `["ORD","MDW"]` | warm-weather airports | `stay_days: 7`, Dec date range |
| "Best weekend getaways from Boston" | `["BOS"]` | `[]` (global) | `stay_days_range: {min:2, max:4}` |

## Tool 2: `find_flight` — Search a Specific Route

Use when both origin and destination cities are known.

### Required Parameters

- `origin` — Single IATA airport or city code (e.g. `"JFK"`, `"PAR"`).
- `destination` — Single IATA airport or city code (e.g. `"CDG"`, `"LON"`).
- `trip_type` — `"roundtrip"` (default) or `"oneway"`.

### Optional Parameters

Same date, stay, price, cabin, currency, locale, direct, and sort parameters as `find_destination`.

### Examples

| User says | origin | destination | other params |
|---|---|---|---|
| "Flights from JFK to CDG next month" | `"JFK"` | `"CDG"` | `departure_date_ranges` for next month |
| "LA to Tokyo for a week in December" | `"LAX"` | `"TYO"` | `stay_days: 7`, Dec date range |
| "Business class NYC to London, 5-10 days" | `"NYC"` | `"LON"` | `cabin_class: "business"`, `stay_days_range: {min:5, max:10}` |
| "Cheapest ORD to LHR under $600" | `"ORD"` | `"LHR"` | `max_price: 600` |

## General Rules

- Default to **roundtrip**. Only use `"oneway"` when the user explicitly writes "one way" or "one-way".
- All dates **must be in the future**. Never send a past date.
- Fill as many search parameters as possible from the user's intent to get the best results.
- Use city codes (e.g. `"LON"`, `"NYC"`, `"PAR"`, `"TYO"`) when searching across all airports in a city.
- Provide results in the user's preferred currency and locale when identifiable.

Related Skills

academic-deep-research

7
from Demerzels-lab/elsamultiskillagent

Transparent, rigorous research with full methodology — not a black-box API wrapper. Conducts exhaustive investigation through mandated 2-cycle research per theme, APA 7th citations, evidence hierarchy, and 3 user checkpoints. Self-contained using native OpenClaw tools (web_search, web_fetch, sessions_spawn). Use for literature reviews, competitive intelligence, or any research requiring academic rigor and reproducibility.

web-searcher

7
from Demerzels-lab/elsamultiskillagent

Autonomous web research agent that performs multi-step searches, follows links, extracts data, and synthesizes.

internet-search

7
from Demerzels-lab/elsamultiskillagent

How to use the internet_search tool effectively — category routing, query formulation, and multi-search strategies.

research-tracker

7
from Demerzels-lab/elsamultiskillagent

Manage autonomous AI research agents with SQLite-based state tracking. Use when spawning long-running research sub-agents, tracking multi-step investigations, coordinating agent handoffs, or monitoring background work. Triggers on: research projects, sub-agent coordination, autonomous investigation, progress tracking, agent oversight.

yutori-web-research

7
from Demerzels-lab/elsamultiskillagent

Use Yutori’s Research API and Browsing API (cloud browser) to research topics, collect sources, and extract structured facts from the web. Use when the user asks to “research X”, “monitor/find papers”, or “navigate to a site and extract info” and you have access to YUTORI dev/prod endpoints via YUTORI_API_BASE and an API key in env (YUTORI_API_KEY or ~/.openclaw/openclaw.json env.YUTORI_API_KEY).

flight-pricer

7
from Demerzels-lab/elsamultiskillagent

A command-line interface (CLI) to search for flight prices using the Duffel API.

literature-search

7
from Demerzels-lab/elsamultiskillagent

Find and compile academic literature with citation lists across Google Scholar, PubMed, arXiv, IEEE, ACM, Semantic.

research-library

7
from Demerzels-lab/elsamultiskillagent

Local-first multimedia research library for hardware projects.

testflight-monitor

7
from Demerzels-lab/elsamultiskillagent

Monitor available TestFlight beta slots with smart app lookups and silent batch checking.

research-assistant

7
from Demerzels-lab/elsamultiskillagent

Organized research and knowledge management for agents.

baidu-scholar-search

7
from Demerzels-lab/elsamultiskillagent

Baidu Academic Search Tool enables the retrieval of both Chinese and English literature, covering various types of literature such as academic journals, conference papers, and dissertations.

market-research-2

7
from Demerzels-lab/elsamultiskillagent

Conduct structured market research for a solopreneur business.