# Ignav Flights (remote · ignav.com)

Live flight prices and working booking links for AI agents and travel apps.

- Trust score: 78/100 (medium)
- Change this week: +9
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- remote · `ignav.com`: 78/100 (this document), [markdown](https://verifymcp.io/servers/gusgordon-ignav-flights/ignav.md), [page](https://verifymcp.io/servers/gusgordon-ignav-flights/ignav)

## Channel facts

- Endpoint: `https://ignav.com/mcp`
- Transports: `streamable-http`
- Auth: `none`
- Version: `1.0.0`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically against the live server, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-08-03.

- **Endpoint Security**: 94/100
  - The endpoint's TLS certificate is valid, in date, and uses a strong key.
  - Authorisation is enforced on tool calls, advertised via RFC 9728 protected-resource metadata. Discovery is public, which costs nothing: no tool can be invoked without a token.
  - HTTPS is enforced; there's no plaintext access path.
  - The HSTS (Strict-Transport-Security) header is present.
  - DNSSEC check failed: this domain isn't protected by DNSSEC.
  - The authorisation server offers only Dynamic Client Registration (RFC 7591), which MCP 2026-07-28 deprecated in favour of Client ID Metadata Documents.
- **Transport & Reachability**: 100/100
  - Verified streamable-http transport via a live MCP handshake.
- **Schema Quality & AI Usability**: 57/100
  - AI-judged instruction clarity (good).
  - Context-footprint check failed: tool/resource definitions use about 599 tokens (~299/item across 2 items; 2 tools + 0 resources), over budget; trim descriptions and params.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 27/100
  - Stability observed for 8 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 100/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 100% of tool parameters carry a description.
  - Structured output schemas are declared (100% of tools); any adoption earns full credit.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add --transport http gusgordon-ignav-flights https://ignav.com/mcp
```

### Codex

```toml
[mcp_servers.gusgordon-ignav-flights]
url = "https://ignav.com/mcp"
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "gusgordon-ignav-flights": {
      "type": "remote",
      "url": "https://ignav.com/mcp",
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add gusgordon-ignav-flights --url https://ignav.com/mcp --transport streamable-http
```

### Hermes

```yaml
mcp_servers:
  gusgordon-ignav-flights:
    url: "https://ignav.com/mcp"
```

### Other

```json
{
  "mcpServers": {
    "gusgordon-ignav-flights": {
      "type": "http",
      "url": "https://ignav.com/mcp"
    }
  }
}
```

The mcpServers block is a cross-client convention. Remote transports vary, so check your client's docs.

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-08-03 (score 78, +1)

No change was recorded against any check on this day. Stability & Change Management went from 23 to 27. That category is still filling its 30-day observation window: 7 days of observed history at the previous scan, 8 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-07-31 (score 77, +6)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-29 (score 71, +1)

No change was recorded against any check on this day. Stability & Change Management went from 7 to 10. That category is still filling its 30-day observation window: 2 days of observed history at the previous scan, 3 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-07-28 (score 70, +1)

- [cosmetic] Tool “search_airports” changed its title: Search airports
- [cosmetic] Tool “search_flights” changed its title: Search flights

### 2026-07-27 (score 69, 0)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-26 (score 69)

First indexed and scored.

## MCP tools (2)

### `search_airports` (~59 tokens)

Search airports

Find airport IATA codes by city, airport name, metro area, or code.

Input parameters:

- `limit` (integer): Maximum number of airport results to return.
- `query` (string, required): Search query for airport names, city names, or airport codes.

Output parameters:

- `result` (array): List of airports matching the query.

### `search_flights` (~301 tokens)

Search flights

Search one-way or round-trip flight prices between two IATA airport codes. Returns only itineraries with a preferred booking link and includes a top-level booking_url for each itinerary.

Input parameters:

- `adults` (integer): Number of adult passengers traveling.
- `airlines_exclude`: Airline codes to specifically exclude from search results.
- `airlines_include`: Airline codes to specifically include in search results.
- `allow_self_transfer` (boolean): Whether to include self-transfer flight options (true or false).
- `cabin_class` (string): Preferred cabin class: economy, premium_economy, business, or first.
- `children` (integer): Number of child passengers traveling.
- `departure_date` (string, required): Departure date in YYYY-MM-DD format.
- `destination` (string, required): Destination airport code for flight search.
- `infants_in_seat` (integer): Number of infants traveling with their own seat.
- `infants_on_lap` (integer): Number of infants traveling on an adult's lap.
- `market` (string): 2-letter market or country code affecting pricing and results.
- `max_price`: Maximum price in the selected market currency for flight results.
- `max_results` (integer): Maximum number of flight results to return.
- `max_stops`: Maximum number of stops allowed in the flight itinerary.
- `origin` (string, required): Origin airport code for flight search.
- `return_date`: Optional return date in YYYY-MM-DD format for round-trip flights.

Output parameters:

- `departure_date` (string): Scheduled departure date (YYYY-MM-DD).
- `destination` (string): Destination airport details for flight search.
- `itineraries` (array): List of flight itineraries.
- `origin` (string): Origin airport details for flight search.
- `return_date` (string|null): Scheduled return date for round-trip flights (YYYY-MM-DD).

## Diagnostics

Captured diagnostic sections: TLS, DNSSEC, Authorisation, Transports. The full working is on the page: https://verifymcp.io/servers/gusgordon-ignav-flights/ignav#diagnostics

## Score history

- 2026-08-03: 78
- 2026-08-02: 77
- 2026-08-01: 77
- 2026-07-31: 77
- 2026-07-30: 71
- 2026-07-29: 71
- 2026-07-28: 70
- 2026-07-27: 69
- 2026-07-26: 69

## Links

- Remote endpoint: https://ignav.com/mcp
- Repository: https://github.com/gusgordon/ignav-skill
- Website: https://ignav.com/docs/mcp
- Changelog RSS feed: https://verifymcp.io/servers/gusgordon-ignav-flights/ignav/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/gusgordon-ignav-flights/ignav/changelog.json
- HTML version of this page: https://verifymcp.io/servers/gusgordon-ignav-flights/ignav
