Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add FlightSeatmap/mcp --skill track-seat-availabilitygit clone --depth 1 https://github.com/FlightSeatmap/mcpWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/flightseatmap/mcp/track-seat-availability)<a href="https://agentmods.dev/skills/flightseatmap/mcp/track-seat-availability"><img src="https://agentmods.dev/badge/skills/flightseatmap/mcp/track-seat-availability/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/flightseatmap/mcp/track-seat-availability"><img src="https://agentmods.dev/badge/skills/flightseatmap/mcp/track-seat-availability.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00057 | $0.00770 |
| Opus 5 | $0.00028 | $0.00385 |
| Sonnet 5 | $0.00011 | $0.00154 |
| Haiku 4.5 | $0.00006 | $0.00077 |
Grade A, and why
track-seat-availability scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 62 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Track seat availability on a flight
Seats free up constantly as other passengers rebook, upgrade, or check in. FlightSeatMap alerts watch a flight and email the user the moment a matching seat opens.
Reach for this after find-the-best-seat has established that the seat the user wants
is currently taken.
Connect
MCP server: https://mcp.flightseatmap.com/mcp (Streamable HTTP).
Alerts require a signed-in account, so unlike the read-only seat map tools these need OAuth. Run the flow in https://flightseatmap.com/auth.md — dynamic client registration plus PKCE, no API key to request. Some alert types also require a paid plan; the tool response carries the checkout URL if so.
Workflow
-
Confirm the flight is in the database. Call
get_seatmap(flight_number)first. If it misses, callsearch_flight(paid) to pull it in.create_seat_alertfails on unknown flights. -
Create the alert with
create_seat_alert:flight_number— e.g.QF1flight_date—YYYY-MM-DD, today through +60 days. Outside that window it fails.cabin_class—economy,premium_economy,business,firstseat_preference— one ofwindow,aisle,bulkhead,exit_row,extra_legroom,quiet_zone,front_of_cabin,rear_of_cabin,specific,adjacent_seats,minimum_seats,class_availability,better_seat_upgradespecific_seat— required whenseat_preferenceisspecific(e.g.12A)adjacent_seats_count— required foradjacent_seats/minimum_seats, 2–9
Pick the preference that matches what the user actually said. "Two seats together" is
adjacent_seatswith a count, not two separatewindowalerts. "Anything better than what I have" isbetter_seat_upgrade. -
Confirm back to the user what you're watching, on which date, and that the alert arrives by email — not through you.
-
Manage existing alerts with
list_seat_alerts(shows active and inactive, with IDs) anddelete_seat_alert(id). Always list before deleting; never guess an ID.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 8d ago First seen · 62 lines · 57 tokens per session scan A 1a1d97825fe2
track-seat-availability is a skill published in the GitHub repository FlightSeatmap/mcp (0 stars, last pushed 6d ago), licensed MIT. It adds 57 tokens to every session and 770 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
daily-report
Compile timestamped conversation logs, agent sessions, IM messages, collaborative documents, meeting notes, task records, and similar OpenViking materials into concise, evidence-grounded daily reports. Use with ov compile when the user asks for a daily work report, end-of-day digest, 日报, or reports for one or more…
tmux
Remote-control tmux sessions for interactive CLIs by sending keystrokes and scraping pane output.
cron
Schedule reminders and recurring tasks.
harness-design-fuzzing
Reference vocabulary for designing instrumented harnesses that drive vulnerability discovery — design classes (trigger-driven vs coverage-driven), tiered scope (T1 isolated function / T2 multi-component / T3 full build), systematic input exploration, the two-coverage distinction (fuzzer-feedback vs audit)…
vulnerability-triage
Reference vocabulary for interpreting vulnerability findings — detector-vs-impact distinction, severity anchoring on demonstrated evidence, the eleven-item interpretation rubric, delegation transparency, primitive-extent scaling, the disqualifier taxonomy (D-0..D-4), CVSS Achievable / Environmental framing…
memory-safety-c-cpp
Reference vocabulary for memory-safety vulnerabilities in native C/C++ code — bug-class taxonomy, common arithmetic patterns that lead to corruption, dispatch-family discipline, type-confusion idioms, use-after-free patterns, and exploitability factors. Read when analyzing, hypothesizing, designing harnesses for, or…