Skip to main content
Glama
CPLX

Flighty MCP Server

by CPLX
README.md
# Flighty MCP Server

A zero-config [MCP](https://modelcontextprotocol.io/) server that connects AI assistants to the [Flighty](https://www.flightyapp.com/) flight tracking app. Ask about your flights, check statuses, look up delay forecasts, and add or remove flights — all through natural conversation.

Just install Flighty on your Mac and connect the server. It reads all credentials and configuration directly from the app — no API keys, no tokens, no setup.

## What it does

This server gives any MCP-compatible AI assistant (Claude, etc.) full read/write access to your Flighty data:

- **"What's my current flight?"** — shows in-progress, recently landed, and about-to-depart flights
- **"What's my next flight?"** — returns the soonest upcoming flight first
- **"How often is AA179 delayed?"** — historical on-time performance with percentage breakdowns
- **"Show my flight stats for 2025"** — total flights, miles, top airlines, top routes
- **"Add DL10 on April 20"** — adds the flight to your Flighty account, syncs to all devices within seconds
- **"Follow UA194 on December 25"** — track someone else's flight (e.g. to pick them up), syncs to all devices
- **"Remove that flight"** — deletes it from your account across all devices
- **"Are any friends flying soon?"** — checks connected friends' upcoming flights
- **"What version of the Flighty tool is this?"** — server info, capabilities, and version

Read operations query Flighty's local SQLite database directly (fast, offline-capable). Write operations call Flighty's API so changes sync to your phone, watch, and widgets. All responses include contextual metadata (sort order, timestamp format) to help AI assistants interpret results correctly.

## Requirements

- **macOS** — Flighty stores its database in the macOS app sandbox
- **Flighty macOS app** — installed and signed in
- **Flighty Pro** — required for the add/remove flight features
- **Node.js 24+** (only for manual install; the .mcpb bundle includes its own runtime)

## Installation

### Claude Desktop (.mcpb) — recommended

Download `flighty-mcp-server.mcpb` from the [dist/](dist/) folder and double-click it. Claude Desktop installs it automatically. No configuration needed.

### Claude Code

```bash
git clone https://github.com/CPLX/flighty-mcp-server.git
cd flighty-mcp-server
npm install
npm run build
```

Add to your MCP config (`~/.claude/settings.local.json` or project `.mcp.json`):

```json
{
  "mcpServers": {
    "flighty": {
      "command": "node",
      "args": ["/absolute/path/to/flighty-mcp-server/build/index.js"]
    }
  }
}
```

### Claude Desktop (manual)

Build from source as above, then add to `~/Library/Application Support/Claude/claude_desktop_config.json`:

```json
{
  "mcpServers": {
    "flighty": {
      "command": "node",
      "args": ["/absolute/path/to/flighty-mcp-server/build/index.js"]
    }
  }
}
```

Restart the client after adding the config.

## Read-Only Mode

By default the server exposes 15 tools, including three that modify your Flighty account: `flighty_add_flight`, `flighty_follow_flight`, and `flighty_remove_flight`. If you only want Claude to read your flight data, you can disable the write tools so they don't appear in `tools/list` at all — the safest way to cap the blast radius.

**Claude Desktop (`.mcpb`):** during install, check the **Read-Only Mode** box. You can toggle it later from the extension's settings.

**Claude Code / manual install:** set the environment variable before launching the server. Add `env` to your MCP config:

```json
{
  "mcpServers": {
    "flighty": {
      "command": "node",
      "args": ["/absolute/path/to/flighty-mcp-server/build/index.js"],
      "env": { "FLIGHTY_READ_ONLY": "1" }
    }
  }
}
```

Accepted truthy values: `1`, `true`, `yes` (case-insensitive). Anything else (or unset) leaves write tools enabled. `flighty_about` reports the current mode.

## Friend-Share Installs

If you use Flighty via someone else's account (shared through Flighty Friends), your locally signed-in Flighty account may own no flights itself — all the flights in the local database belong to the friend whose Flighty Pro account you're piggybacking on. In that setup, the server automatically falls back to picking the user with the most flights in the database. If your install has multiple people's flights and the server picks the wrong one, pin the correct user with an environment variable:

```json
{
  "mcpServers": {
    "flighty": {
      "command": "node",
      "args": ["/absolute/path/to/flighty-mcp-server/build/index.js"],
      "env": { "FLIGHTY_OWNER_USER_ID": "the-userId-you-want" }
    }
  }
}
```

You can find the right userId by querying `SELECT userId, COUNT(*) FROM UserFlight GROUP BY userId ORDER BY 2 DESC` against `~/Library/Containers/com.flightyapp.flighty/Data/Documents/MainFlightyDatabase.db`.

## Tools

15 tools organized into four categories (12 read + 3 write; write tools are hidden when Read-Only Mode is on).

### Flight Management

| Tool | Description |
|------|-------------|
| `flighty_list_flights` | List your flights — upcoming (sorted soonest first), by year, or all (sorted most recent first) |
| `flighty_current_flights` | Active travel context: flights departing within ±24 hours of now |
| `flighty_get_flight` | Get details for a single flight by UUID or flight number (e.g., "AA179") |
| `flighty_search_flights` | Search your flight history by airline, airports, or date range |
| `flighty_add_flight` | Add a flight by code and date (e.g., "DL10" on "2026-04-20"). Syncs to all devices |
| `flighty_follow_flight` | Follow a flight without being a passenger (e.g., tracking someone's flight). Syncs to all devices |
| `flighty_remove_flight` | Remove a flight by UUID. Permanent deletion across all devices |

### Flight Intelligence

| Tool | Description |
|------|-------------|
| `flighty_get_flight_status` | Current status (scheduled/delayed/in_air/landed/cancelled), gate, delay, weather |
| `flighty_get_delay_forecast` | Historical on-time stats: % early, on-time, late, cancelled, diverted |
| `flighty_get_flight_stats` | Aggregate stats: total flights, miles, circumnavigations, top airlines and routes |
| `flighty_get_connections` | Layover info for connecting flights: airports, duration, minimum connection time |

### Social and Reference

| Tool | Description |
|------|-------------|
| `flighty_list_friend_flights` | Connected friends' flights, filterable by name, upcoming, or year |
| `flighty_search_airports` | Search airports by IATA/ICAO code, city, or name |
| `flighty_search_airlines` | Search airlines by IATA/ICAO code, name, or alliance |

### Server Info

| Tool | Description |
|------|-------------|
| `flighty_about` | Version, author, repository, capabilities, and requirements |

## Tool details

### flighty_list_flights

Lists your flights with smart sort order based on the filter:

- **`upcoming_only=true`**: sorted soonest first — the first result is your next flight
- **No filter or `year`**: sorted most recent departure first (natural browsing order)

**Parameters:**
- `upcoming_only` (boolean, default: false) — only flights with future departures, sorted soonest first
- `year` (integer, optional) — filter to a specific year
- `limit` (integer, 1-200, default: 50)
- `offset` (integer, default: 0)

For flights currently in progress or recently landed, use `flighty_current_flights` instead.

Includes both auto-detected commercial flights and manually-entered flights (private/charter operators not in Flighty's commercial database, or commercial flights the user added by hand). Same applies to `flighty_search_flights`, `flighty_get_flight`, `flighty_current_flights`, `flighty_get_flight_status`, `flighty_get_delay_forecast`, `flighty_get_flight_stats`, and `flighty_get_connections`.

---

### flighty_current_flights

Returns flights departing within 24 hours in either direction from now. Captures in-progress flights, recently landed flights (baggage claim, layovers), and flights about to depart.

**No parameters.** Sorted by departure time ascending (earliest first).

---

### flighty_get_flight

Looks up a single flight by UUID or flight number.

**Parameters (provide one):**
- `flight_id` (string) — internal Flighty UUID
- `flight_number` (string) — e.g., "AA179", "DL10". If flown multiple times, returns the most recent instance

---

### flighty_search_flights

Searches your flight history with combinable AND filters. Sorted most recent departure first.

**Parameters (all optional):**
- `airline` — IATA code ("AA") or partial name ("American")
- `departure_airport` — IATA code ("JFK") or city ("New York")
- `arrival_airport` — IATA code ("SFO") or city ("San Francisco")
- `after` — flights departing on or after this date ("2025-01-01")
- `before` — flights departing on or before this date ("2025-12-31")
- `limit` (integer, 1-200, default: 50)

---

### flighty_get_flight_status

Returns the operational status of a flight that is already in the user's Flighty database. This only works for flights the user has added to Flighty — it cannot look up arbitrary flight numbers.

**Parameters:**
- `flight_number` (string) — a flight in the user's database, e.g., "UA194"

**Returns:** Status ("scheduled", "delayed", "in_air", "landed", "cancelled"), departure/arrival delay in minutes, gate assignments, baggage belt, weather conditions, aircraft type, and tail number.

Data freshness depends on the Flighty app's last sync — this does not make live API calls for status.

---

### flighty_get_delay_forecast

Historical on-time performance for a flight that is already in the user's Flighty database. Flighty attaches delay forecast data when a flight is added to the user's account — this tool reads that stored data. It cannot look up forecasts for arbitrary flight numbers that aren't in the database.

**Parameters:**
- `flight_number` (string) — a flight in the user's database, e.g., "AA179"

**Returns:** Number of observations (sample size), mean delay in minutes, and percentage breakdowns: early, on-time, late (15/30/45+ min), cancelled, diverted. Returns null if no forecast data is available.

---

### flighty_search_airports

Searches Flighty's airport database. Exact IATA/ICAO matches are prioritized over fuzzy name/city matches.

**Parameters:**
- `query` (string) — IATA code, ICAO code, city name, or airport name
- `limit` (integer, 1-50, default: 10)

---

### flighty_search_airlines

Searches Flighty's airline database.

**Parameters:**
- `query` (string) — IATA code, ICAO code, airline name, or alliance name
- `limit` (integer, 1-50, default: 10)

---

### flighty_get_flight_stats

Aggregate statistics across your flight history.

**Parameters:**
- `year` (integer, optional) — filter to a specific year; omit for all-time

**Returns:** Total flights, distance (km and miles), earth circumnavigations, unique departure/arrival airports, unique airlines, `countries_visited` (deduped across departure and arrival countries), cancelled flight count, top 5 airlines, top 5 routes.

Includes both auto-detected commercial flights and manually-entered flights (e.g., private/charter operators not in Flighty's commercial database).

---

### flighty_get_connections

Layover information for connecting flight pairs. Sorted by first leg departure time descending.

**No parameters.**

**Returns:** For each connection: inbound flight (first leg, e.g., "AA1449"), origin airport, connection airport, outbound flight (second leg, e.g., "AA1166"), destination airport, arrival/departure times, layover duration in minutes, and minimum connection time.

---

### flighty_list_friend_flights

Flights from your Flighty-connected friends. Same sort behavior as `list_flights` — upcoming sorted soonest first, otherwise most recent first.

**Parameters:**
- `friend_name` (string, optional) — partial match on name
- `upcoming_only` (boolean, default: false) — future flights only, sorted soonest first
- `year` (integer, optional)
- `limit` (integer, 1-200, default: 50)
- `offset` (integer, default: 0)

---

### flighty_add_flight

Adds a flight to your Flighty account via the Flighty API. The flight syncs to all your devices (phone, watch, widgets) within seconds.

**Parameters:**
- `flight_code` (string) — e.g., "DL10", "UA194". The 2-character airline prefix is parsed automatically
- `date` (string) — departure date in YYYY-MM-DD format

**Returns:** The server-side flight UUID on success, or an error if the flight isn't found for that date.

---

### flighty_follow_flight

Follows a flight without marking yourself as a passenger — use this to track someone else's flight (e.g., a family member's arrival). The flight is registered with Flighty's server and syncs to all devices. It will appear in `flighty_list_friend_flights` results (with `friend_name` as `null`).

**Parameters:**
- `flight_code` (string) — e.g., "UA194", "DL10". The airline prefix is parsed automatically
- `date` (string) — departure date in YYYY-MM-DD format

**Returns:** The server-side flight UUID on success, or an error if the flight isn't found for that date.

---

### flighty_remove_flight

Permanently removes a flight from your Flighty account across all devices.

**Parameters:**
- `flight_id` (string) — the flight UUID (from `list_flights` or `add_flight` results)

**Warning:** This cannot be undone. You would need to re-add the flight.

---

### flighty_about

Returns server version, author, repository link, tool inventory, and requirements.

**No parameters.**

## How it works

Flighty stores all flight data in a local SQLite database on macOS at:
```
~/Library/Containers/com.flightyapp.flighty/Data/Documents/MainFlightyDatabase.db
```

This server opens that database in read-only mode to answer queries. Queries `UNION` Flighty's `Flight` + `ManualFlight` and `UserFlight` + `UserManualFlight` tables so manually-entered flights surface alongside auto-detected commercial ones, and filter on `UserFlight.isMyFlight = 1` so followed/tracked flights (`isMyFlight = 0`) don't leak into "your flights" queries. Followed flights (`isMyFlight = 0`) are surfaced by `flighty_list_friend_flights` alongside connected friends' flights. It reads all necessary credentials directly from the installed Flighty app:

- **User identity** — JWT auth token from `Flighty.sqlite` (identifies the user to the API)
- **API access** — build token from the app's `Info.plist` (identifies the app version)
- **Sync token** — from the app's UserDefaults plist (for flight deletion)

For write operations (add/remove flights), the server makes the same API calls the Flighty app itself makes. Added flights get full enrichment from Flighty's servers — gate assignments, weather, delay forecasts, codeshare data — and sync to all devices. No manual configuration is needed.

All tool responses include a `note` field with contextual metadata (sort order, timestamp format) to help AI assistants interpret results correctly. All timestamps are UTC.

## Architecture

```
src/
  index.ts              # Entry point, tool registration, flighty_about
  constants.ts          # Database paths, API config, build token (read from app)
  types.ts              # TypeScript interfaces
  services/
    database.ts         # FlightyDatabase — all SQLite read queries
    flighty-api.ts      # FlightyApi — search, subscribe, delete via Flighty API
  tools/
    flights.ts          # list, current, get, search flights
    flight-status.ts    # status, delay forecast
    friends.ts          # friend flights
    reference.ts        # airport/airline search
    stats.ts            # aggregate statistics
    connections.ts      # layover/connection info
    write.ts            # add_flight, remove_flight (API-backed)
```

## Limitations

- **macOS only** — relies on the Flighty macOS app's sandboxed data
- **Flighty app must be installed and signed in** — the server reads its local databases for both flight data and authentication
- **Read data freshness** — flight status data is as fresh as the Flighty app's last sync, not real-time
- **Write operations require network** — add/remove flights call the Flighty API
- **Flighty API is private** — this server uses Flighty's undocumented API, which could change in future app updates
- **Build token is read from the installed app** — updates automatically when the app updates, but if Flighty changes where it stores the token, the server will need updating

## License

MIT

TDQS

A4.3/5.0

Scored across 14 tools

Disambiguation4/5

Most tools have clearly distinct purposes, but some potential overlap exists (e.g., flighty_get_flight vs flighty_get_flight_status, flighty_current_flights vs flighty_list_flights). Descriptions help differentiate, but an agent might occasionally misselect.

Naming Consistency4/5

All tools use the 'flighty_' prefix and mostly follow verb_noun pattern. 'flighty_about' and 'flighty_current_flights' are minor deviations, but overall the pattern is predictable and consistent.

Tool Count5/5

14 tools is well-scoped for a flight tracking server. Each tool serves a distinct need (CRUD, search, status, stats, connections, friend sharing) without being overwhelming or sparse.

Completeness5/5

The tool surface covers core flight tracking operations: add/remove, list/search, status, delay forecast, statistics, connections, and friend flights. Missing update/modify is appropriate as flights are synced automatically. No obvious gaps.

Maintenance

ActivityMaintained
ResponsivenessUnresponsive