Skip to main content
Glama

Airline Starlink Tracker

Server Details

Starlink WiFi status for United, Alaska and Hawaiian flights, with per-airline route odds.

If you are the author of this connector, you can claim ownership with GitHub, an HTTP challenge, or a DNS record. Claimed connector authors can inspect health checks, view analytics, and manage their listing.
Status
Healthy
Last Tested
Transport
Streamable HTTP · MCP 2025-06-18
URL

TDQS

A4.2/5.0

Scored across 7 tools

Disambiguation4/5

Most tools are clearly separated by firm vs. predicted data and by scope (single flight, route, fleet, itinerary). check_flight and predict_flight_starlink overlap somewhat since check_flight falls through to prediction, but the descriptions explicitly distinguish confirmed assignment vs. probability.

Naming Consistency4/5

All tools use verb_noun naming: check_flight, get_fleet_stats, list_starlink_aircraft, plan_starlink_itinerary, predict_flight_starlink, predict_route_starlink, search_starlink_flights. The verbs vary (check, get, list, plan, predict, search) but each maps to a distinct action type; consistent snake_case throughout.

Tool Count5/5

Seven tools is well-scoped for a domain tracker: flight checking, prediction, route search, itinerary planning, fleet stats, and aircraft listing each earn their place without redundancy.

Completeness4/5

The surface covers confirmed lookups, predictions, route search, itinerary planning, and fleet statistics. Minor gaps: no per-aircraft detail beyond listing, no airline-specific filtering tool, and no historical trend endpoint, but agents can work around these with existing tools.

Available Tools

7 tools
check_flightCheck flight for StarlinkA
Read-onlyIdempotent
Inspect

Use when the user asks "does my flight have Starlink/WiFi?" with a specific tracked-airline flight number and date. Returns FIRM YES if assigned to a verified-Starlink plane, FIRM NO if assigned to a verified non-Starlink plane, or a probability estimate if no assignment exists yet (assignments publish ~2 days out). For dates further out, call predict_flight_starlink directly — check_flight just falls through to the same estimate with extra latency.

ParametersJSON Schema
NameRequiredDescriptionDefault
dateYesFlight date in YYYY-MM-DD format, matched to the departure airport's local calendar date (UTC fallback for unmapped airports).
originNoOptional 3-letter IATA departure airport of the traveller's leg (e.g. 'DEN'); scopes the answer to that leg of a multi-leg flight number.
destinationNoOptional 3-letter IATA arrival airport of the traveller's leg (e.g. 'SAN'); with origin, picks one leg of a multi-leg flight number.
flight_numberYesFlight number, e.g. 'UA544' or just the digits. Also accepts ICAO airline codes like UAL544; use the marketing flight number (UA5212, not SKW5212).

TDQS

A4.7/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already signal readOnly/openWorld/idempotent, but the description adds substantial behavioral detail: the three return categories (FIRM YES / FIRM NO / probability estimate), the ~2-day assignment publication timeline, and the fall-through behavior to predict_flight_starlink. This goes beyond what annotations alone convey.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Three sentences, with the usage trigger front-loaded and no filler. Every sentence adds distinct value: when to use, what it returns, and when to use the alternative.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Despite no output schema, the description covers the key return semantics, the timing uncertainty, and the routing to predict_flight_starlink. For a read-only lookup tool with 100% schema coverage and rich annotations, nothing essential is missing for correct invocation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the schema already documents all four parameters thoroughly. The description adds little beyond the schema: it reinforces the flight-number/date trigger but does not meaningfully expand param meaning. Baseline 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states the exact trigger ('does my flight have Starlink/WiFi?') and the specific resource (tracked-airline flight number and date). It also distinguishes itself from predict_flight_starlink by clarifying that check_flight returns firm yes/no when assignment exists and falls through to an estimate otherwise.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly says when to use ('with a specific tracked-airline flight number and date'), gives an exclusion ('For dates further out'), and names the alternative (predict_flight_starlink) plus the reason (extra latency). This is strong routing guidance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_fleet_statsStarlink fleet rollout statsA
Read-onlyIdempotent
Inspect

Use when the user asks "how far along is the Starlink rollout?" or wants overall fleet numbers. Returns tracked airlines Starlink installation counts and percentages across mainline and express fleets, plus a per-aircraft-type breakdown (installed/total per family). Not for per-flight checks — use check_flight for that.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.7/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true, destructiveHint=false, and idempotentHint=true, covering the safety profile. The description adds the nature of the returned data (counts, percentages, per-aircraft-type breakdown), which is useful context beyond the annotations. No contradictions found.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two sentences with no filler. The usage trigger is front-loaded, followed by a compact summary of the output and a clear redirection to an alternative. Every sentence earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a read-only stats tool with no parameters and no output schema, the description fully covers when to use it and what it returns. The annotations handle safety, and the description handles selection criteria. Nothing an agent needs to decide is missing.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The tool has zero parameters, so the schema provides complete coverage. Per the rubric, a baseline of 4 is appropriate since there is no ambiguity to resolve and the description doesn't need to add parameter-level details.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses the specific verb 'returns' and clearly identifies the resource as 'Starlink installation counts and percentages' across fleets. It distinguishes this tool from check_flight explicitly by stating 'Not for per-flight checks', making the purpose unambiguous.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It gives an explicit trigger ('when the user asks...') and an explicit exclusion ('Not for per-flight checks — use check_flight for that'), naming the alternative. This provides clear guidance on when to select this tool over siblings.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections.

  1. 7 tool updates
    • First observedcheck_flight
    • First observedget_fleet_stats
    • First observedlist_starlink_aircraft
    • First observedplan_starlink_itinerary
    • First observedpredict_flight_starlink
    • First observedpredict_route_starlink
    • First observedsearch_starlink_flights

Related MCP Connectors

Related MCP Servers

  • A
    license
    B
    quality
    C
    maintenance
    Enables finding and comparing cash and award flights, with seat maps and trip planning, ranking options by user-defined per-mile valuations.
    6
    MIT
  • A
    license
    Not graded
    quality
    B
    maintenance
    Enables AI assistants to retrieve real cabin layouts, compare free seats against traveller preferences, access seat reviews and ratings, and create seat alerts for flights across 150+ airlines.
    MIT
  • A
    license
    Not graded
    quality
    B
    maintenance
    Enables AI assistants to search Google Flights for trips, filter for Starlink-equipped flights, enforce connection rules, compare fare premiums, and manage saved search presets through MCP tools.
    MIT
Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources