Skip to main content
Glama

faa-aircraft-registry-mcp-server

faa-aircraft-registry-mcp-server: search registrations

faa_search_registrations
Read-onlyIdempotent

Search active US civil aircraft registrations by owner name, make/model, state, aircraft type, or Mode S (hex) code. Returns decoded summaries with N-numbers to drill into via faa_lookup_registration. At least one filter is required. Owner-name search is unavailable when this deployment redacts owner PII — search by make/model, state, aircraft type, or Mode S code instead. Every response reports totalCount (all matches, not just this page); when more remain, it returns nextOffset — pass it back as offset to page forward.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoMaximum number of results to return (1–200, default 25).
stateNoTwo-letter state/territory abbreviation (exact match).
offsetNoZero-based index of the first result to return — pass the nextOffset from a previous response, with identical filters, to page forward (default 0).
makeModelNoAircraft make and/or model to match (full-text).
modeSCodeNoMode S code in hex to match exactly (ICAO 24-bit address).
ownerNameNoRegistrant name to match (full-text). Rejected when owner-PII redaction is on.
aircraftTypeNoAircraft type code to match exactly (e.g. "4" for fixed-wing single-engine).

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
capNoThe limit that was applied (present only when truncated is set).
errorNoPresent when the call failed. Absent on success.
shownNoNumber of results on this page (present only when truncated is set).
noticeNoGuidance when no registrations matched, or when more matches remain.
truncatedNoPresent and true only when matches remain beyond this page.
nextOffsetNoOffset to request the next page; absent when this page reached the end of the matches.
totalCountNoTotal registrations matching the filters, across all pages. Always present.
registrationsNoMatching registration summaries for this page (up to limit).

TDQS

A5/5.0
Behavior5/5

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

Annotations already declare readOnlyHint=true and idempotentHint=true, but the description adds crucial behavioral details beyond those: the requirement for at least one filter, the owner-PII redaction condition, and the pagination mechanism (totalCount, nextOffset, offset). These are non-obvious behaviors that would otherwise be unknown. No contradiction with annotations exists.

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 three sentences with zero filler. It leads with the core purpose, then covers the required-filter constraint and the redaction caveat, and finishes with pagination behavior. Every sentence contributes essential information, and the structure is logical — purpose first, then constraints, then continuation mechanics.

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 tool with 7 optional parameters, an output schema, and a pagination design, the description covers all critical operational aspects: search fields, output format, mandatory-filter condition, deployment-specific redaction, and pagination flow. It even names the follow-up tool (faa_lookup_registration). There is no missing information an agent would need to invoke it correctly, especially given the annotations already cover read-only idempotency.

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

Parameters5/5

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

Schema coverage is 100% with individual parameter descriptions, providing a baseline of 3. The description adds meaningful context on top: it clarifies that at least one filter is required (a cross-parameter constraint not in the JSON Schema, since no property is marked required), and it explains how offset relates to pagination via nextOffset. It also reinforces the ownerName rejection condition, tying the parameter to the deployment context. This goes beyond mere parameter listing.

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 opens with a specific verb and resource: 'Search active US civil aircraft registrations' and lists the searchable fields. It clearly distinguishes itself from the sibling tools by mentioning the drill-in step to faa_lookup_registration, establishing it as the search entry point rather than a lookup. The output expectation ('decoded summaries with N-numbers') is also stated, leaving no ambiguity about the tool's role.

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?

The description explicitly states a hard requirement ('At least one filter is required') and provides conditional guidance for when owner-name search is unavailable ('search by make/model, state, aircraft type, or Mode S code instead'). It also gives precise pagination instructions, telling the agent to pass nextOffset back as offset. This is actionable, context-specific guidance that distinguishes when and how to use the tool.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.7/5.0
Disambiguation5/5

Each tool has a clear and distinct purpose: faa_get_aircraft_type decodes a code to specs, faa_search_aircraft_types discovers codes by name; faa_lookup_registration gets full details for active N-numbers, faa_get_registration_status handles inactive or unreserved ones; faa_search_registrations searches by criteria. Descriptions explicitly clarify overlaps, so agents can reliably choose the right tool.

Naming Consistency5/5

All tools follow a uniform 'faa_verb_noun' pattern with consistent verb choices (get, lookup, search). The naming is predictable and makes the toolset easy to navigate.

Tool Count5/5

Five tools is ideal for a focused registry server. Each tool provides a necessary function (search, decode, status check, full lookup) without redundancy, covering the core workflow in a lean set.

Completeness5/5

The toolset covers all key operations for a read-only aircraft registry: searching registrations and aircraft types, looking up full records, and checking registration status across all files. There are no obvious gaps for the intended use case.