AviationHS charter quotes
Server Details
Price a US private jet charter: search airports, check runway limits, quote a flight.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Available Tools
5 toolscheck_runwayARead-onlyInspect
Whether one aircraft can use one field, accounting for elevation and any published wingspan or weight limit. Returns the reason, not just a boolean — the answer is usually 'yes but with a payload penalty', which a boolean cannot say. Planning aid only: the operating carrier and its pilot in command decide. Indicative broker estimate. AviationHS is an air charter broker under 14 CFR Part 295, not a direct air carrier. Not an offer of air transportation until an operating carrier confirms in writing.
| Name | Required | Description | Default |
|---|---|---|---|
| icao | Yes | Airport, by ICAO code or city. | |
| aircraft | Yes | Aircraft name or slug. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Beyond the readOnlyHint annotation, the description discloses that the tool returns a reason rather than a simple boolean, and that the typical result is 'yes but with a payload penalty.' It also adds reliability caveats ('Indicative broker estimate', 'Not an offer of air transportation'), which an agent should know before relying on the result.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is front-loaded with purpose and output behavior, followed by necessary caveats. The legal/broker disclaimers are somewhat verbose but are relevant to the tool's advisory nature; each sentence contributes meaningful context without obvious redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given there is no output schema, the description adequately explains what the tool returns (a reason, not just a boolean) and the common shape of that reason. It also conveys the tool's advisory scope and limitations, which is important for a broker-related feasibility check. Minor gaps like error behavior or exact output structure are not critical for invocation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, with both parameters documented in the input schema. The description adds context about what the tool evaluates (elevation, wingspan, weight) but does not add new detail about the format or syntax of the icao or aircraft parameters beyond what the schema already provides.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific predicate: determines whether one aircraft can use one airfield, with explicit evaluation criteria (elevation, published wingspan, weight limits). This clearly distinguishes it from siblings like estimate_flight_time, get_quote, list_aircraft, and search_airports.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies use as a planning aid and explicitly excludes it as a final authority ('operating carrier and its pilot in command decide'). However, it does not mention when to choose this tool over sibling tools or name alternatives, so usage guidance remains somewhat implicit.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
estimate_flight_timeARead-onlyInspect
Great-circle distance with the standard routing allowance, divided by published cruise, plus ground time — and whether the leg needs a fuel stop. Indicative broker estimate. AviationHS is an air charter broker under 14 CFR Part 295, not a direct air carrier. Not an offer of air transportation until an operating carrier confirms in writing.
| Name | Required | Description | Default |
|---|---|---|---|
| to | Yes | Arrival field. | |
| from | Yes | Departure field. | |
| aircraft | Yes | Aircraft name or slug. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description discloses the exact computation method: great-circle distance with standard routing allowance, divided by published cruise, plus ground time, and a fuel-stop determination. It also explains that the result is an indicative broker estimate and that AviationHS is not a direct air carrier. This goes well beyond the readOnlyHint annotation and provides meaningful operational context.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is compact and front-loaded with the core calculation and output. Each sentence earns its place: the formula, the indicative nature, and the regulatory disclaimer. The legal sentence is relevant because it frames how the result should be presented.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
There is no output schema, so the description carries the burden of explaining what the tool returns. It mentions the fuel-stop flag and the inputs to the calculation, but it does not specify the output format or units, nor does it clarify accepted input formats for from/to/aircraft. This is adequate for a simple estimator but leaves some ambiguity for an agent.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the baseline of 3 applies. The tool description does not add material parameter-level guidance beyond what the schema already says: it does not explain what values from/to expect or how aircraft should be specified. The formula context is useful but does not clarify parameter formats.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly conveys that the tool calculates an indicative flight time using great-circle distance, routing allowance, cruise speed, and ground time, and that it also indicates whether a fuel stop is needed. It does not use an explicit 'estimates flight time' verb phrase, and it does not distinguish itself by name from siblings, though the legal disclaimer separates it from quote/offer tools.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies this is an indicative planning estimate rather than a binding quote or offer, which hints at when to use it. However, it does not explicitly state when to use this tool instead of siblings like get_quote or check_runway, nor does it provide exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_quoteARead-onlyInspect
Price a trip: every aircraft in the reference fleet that carries the party, with the ones that cannot use either runway excluded and the reason given. Includes crew, landing and handling, the daily minimum and the 7.5% federal excise tax. Indicative broker estimate. AviationHS is an air charter broker under 14 CFR Part 295, not a direct air carrier. Not an offer of air transportation until an operating carrier confirms in writing.
| Name | Required | Description | Default |
|---|---|---|---|
| to | Yes | Arrival field, by ICAO code or city. | |
| pax | No | Passengers. Default 6. | |
| date | No | Departure date, YYYY-MM-DD. Recorded, not yet priced seasonally. | |
| from | Yes | Departure field, by ICAO code or city. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The annotations only declare readOnlyHint=true and openWorldHint=false, so the description carries the burden of behavioral context. It adds substantial value: the estimate is indicative, AviationHS is a Part 295 broker rather than a direct air carrier, and the result is not an offer until an operating carrier confirms in writing. It also discloses what is included and why certain aircraft are excluded.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is front-loaded with the core action and scope, then adds behavior, inclusions, and legal context in dense, purposeful sentences. Every sentence contributes meaningful information; there is no filler or redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Despite lacking an output schema, the description explains the pricing scope, inclusion items, exclusion logic, legal status, and the indicative nature of the result. An agent has enough information to call the tool correctly and interpret the high-level response.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
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 from, to, pax, and date. The description does not add much parameter-level detail, though 'either runway' and 'reference fleet' provide some context for interpreting from/to and aircraft selection. Baseline 3 is appropriate because the schema carries the parameter documentation burden.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
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: 'Price a trip' and then defines the exact scope—every aircraft in the reference fleet that carries the party, with runway-ineligible aircraft excluded and reasons given. This clearly distinguishes it from siblings like estimate_flight_time and check_runway.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description makes its context clear: this is the tool for getting a full indicative charter quote including crew, landing, handling, daily minimum, and federal excise tax. It does not explicitly state when not to use it or name alternatives, so it misses the explicit when/when-not guidance of a 5.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_aircraftARead-onlyInspect
The reference fleet with published range, cruise, wingspan and balanced field length, plus an indicative hourly range. Indicative broker estimate. AviationHS is an air charter broker under 14 CFR Part 295, not a direct air carrier. Not an offer of air transportation until an operating carrier confirms in writing.
| Name | Required | Description | Default |
|---|---|---|---|
| pax | No | Only aircraft that seat at least this many passengers. | |
| slug | No | Exactly one aircraft, by slug — e.g. "global-7500". | |
| class | No | Turboprop, Very light, Light, Midsize, Super-mid, Heavy or Ultra-long. | |
| query | No | Match on name — e.g. "Citation" or "Falcon 8X". | |
| min_range_nm | No | Only aircraft with at least this much NBAA IFR range. | |
| max_wingspan_ft | No | Only aircraft narrow enough for a span-limited field. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, and the description adds meaningful behavioral context: the data is 'indicative,' the entity is a broker under 14 CFR Part 295, and the listing is not an offer of transportation until a carrier confirms in writing. This goes beyond the annotation without contradicting it.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise and front-loaded with the fleet attributes, followed by necessary legal caveats. The only minor redundancy is the repeated 'indicative' and slightly drawn-out broker disclaimer, but every clause contributes useful context.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a read-only catalog with no required parameters and no output schema, the description adequately names the expected output fields and important legal limitations. It does not describe return format or filtering behavior, but the input schema covers filters and no output schema exists to detail.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100% and all six parameters have clear descriptions, so the schema fully carries the parameter documentation. The description adds no parameter-specific meaning, but none is needed at this coverage level.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description names the resource ('reference fleet') and enumerates the data fields the tool exposes: range, cruise, wingspan, balanced field length, and indicative hourly rate. It lacks an explicit verb like 'Lists' or 'Returns,' but the meaning is clear and the tool is readily distinguishable from its airport/runway/quote siblings.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no explicit guidance on when to use this tool versus alternatives such as check_runway, estimate_flight_time, or get_quote. The legal and broker-status caveats are useful context but do not help an agent decide when to invoke this tool.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_airportsARead-onlyInspect
Find a US airport by name, city, ICAO or IATA code — or every field within reach of one, filtered by usable runway length. Covers the fields a business jet can actually use (847 in the reference set). Indicative broker estimate. AviationHS is an air charter broker under 14 CFR Part 295, not a direct air carrier. Not an offer of air transportation until an operating carrier confirms in writing.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum results. Default 20, max 100. | |
| query | No | Name, city, ICAO or IATA code. | |
| state | No | Two-letter US state code. | |
| near_icao | No | Return fields near this one instead, nearest first. | |
| within_nm | No | Radius for near_icao. Default 150. | |
| min_runway_ft | No | Only fields with at least this much hard-surface runway. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With readOnlyHint/openWorldHint already in annotations, the description adds value by disclosing the reference-set size (847), the 'Indicative broker estimate' nature, and the Part 295 broker/not-a-carrier legal context. No contradiction with annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The core purpose is front-loaded in the first sentence, followed by necessary scope and disclaimer context. A few boilerplate legal caveats take space, but every sentence provides some selection/use-relevant context.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description covers the tool's purpose, dataset scope, estimation nature, and legal status, while the schema covers all parameters. With no output schema, it would benefit from a bit more on return shape, but the description is otherwise sufficient for correct invocation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
All six parameters are already described in the schema (100% coverage), so the baseline applies. The description clarifies 'field' semantics and the runway filter, but adds little beyond the schema for individual parameters.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
States a specific verb ('Find') and resource ('US airport'), with explicit search keys (name, city, ICAO, IATA) and an optional mode (nearby fields filtered by runway length). The scope ('business jet can actually use') also differentiates it from the sibling list_aircraft and check_runway tools.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description makes the intended use clear: locate US airports or nearby usable fields by identifier/name or runway capability. It does not explicitly name alternatives or exclusion conditions, but the 'find vs. check/quote/list' context is strong enough to guide selection.
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. Dates show when Glama detected each change.
5 tool updates
- First observed
check_runway - First observed
estimate_flight_time - First observed
get_quote - First observed
list_aircraft - First observed
search_airports
Frequently Asked Questions
Claiming proves that you control a remote MCP connector. It does not move, proxy, or interrupt the server.
Open the connector listing, choose Claim ownership, and sign in to Glama.
Complete one verification method:
GitHub identity — fastest for official registry listings. For a namespace such as
io.github.alice/server, link the matching GitHub user, then choose Claim with GitHub. An organization namespace such asio.github.acme/serveralso needs that organization to have installed the Glama AI GitHub App and approved its permissions, because GitHub discloses organization membership only to apps it has installed. Use HTTP or DNS when it has not.HTTP challenge — works when you can deploy a public file. Generate a token, publish the exact JSON Glama shows at
/.well-known/glama.jsonon the same origin as the connector, then choose Check HTTP challenge.DNS challenge — works when you control DNS but cannot change the server. Generate a token, create the exact TXT record Glama shows, wait for it to propagate, then choose Check DNS challenge.
After verification, Glama sends a confirmation email and gives you access to listing details, thumbnails, health checks, and analytics. Keep the HTTP file or DNS record in place: Glama periodically checks it and ownership remains verified while the token is discoverable.
The HTTP ownership file has this structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"claim": "glama_claim_..."
}Claim tokens are opaque, stable, and bound to the signed-in Glama account. They contain no email address or other personal information. If Glama can no longer discover a verified HTTP or DNS token, it starts a seven-day grace period before removing claim-based access. Restore the same token during that period to keep ownership verified. Never publish an email address, Glama session token, GitHub token, or connector credential as ownership proof.
If verification fails, confirm that you copied the current token exactly. The HTTP file must be public, return valid JSON with a successful HTTP response, and stay on the connector's origin. DNS changes may need more time to propagate. A claim cannot transfer to a different origin or hostname: if the connector target changes, Glama starts the grace period and the new target must be claimed separately after the previous claim is released.
For a connector linked to the official MCP Registry, registry updates continue to replace its name, description, and URL by default. After claiming, open Manage connector and enable Use Glama listing details as the source of truth if edits made on Glama should be preserved. Categories and thumbnails are always managed on Glama; registry linkage and technical connection settings continue to sync.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
To improve your MCP server's ranking:
Claim ownership of the server listing
Complete the server profile with an accurate description and thumbnail
Provide a test profile so Glama can connect to and evaluate the server
Keep tool definitions clear and complete to earn a high Tool Definition Quality Score (TDQS)
Route real usage through the Glama Gateway; more recorded successful server uses also improve the ranking
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Connectors
Instant private jet charter price estimates and confirmed live quotes, worldwide.
Ferry-flight price estimates + aircraft, airport, FAA-registry, route & live-flight data.
Search live empty leg private jet flights and get charter price estimates. Free, no API key.
51Private chauffeured transport in Los Angeles. Price any trip at a fixed all-in rate, no account.
Related MCP Servers
- AlicenseAqualityCmaintenanceGive AI agents the ability to search private jets, compare aircraft, get quotes, and submit charter requests through natural language.713MIT
- AlicenseBqualityBmaintenanceEnables flight planning and aviation operations through intelligent airport resolution, great-circle route calculation, and aircraft performance estimation. Supports 28,000+ airports worldwide and 190+ aircraft types for comprehensive flight planning via natural language.464MIT

skyaccess-mcpofficial
FlicenseNot gradedqualityCmaintenanceEnables AI clients to search discounted private-jet empty-leg flights, retrieve flight details, obtain booking links, estimate charter prices, and submit charter enquiries.-- FlicenseNot gradedqualityDmaintenanceEnables AI agents to query airport information and calculate Great Circle distances between global airports using IATA codes, following the FFP industry standard in statute miles.-
Glama MCP Gateway
Add one secure layer between your agents and this server.
TDQS
Each tool targets a distinct aspect of the charter quoting workflow: airport search, fleet lookup, runway feasibility, flight time estimation, and pricing. No two tools overlap in purpose, so an agent can confidently select the right one.
All tool names follow a consistent snake_case verb_noun pattern: check_runway, estimate_flight_time, get_quote, list_aircraft, search_airports. The verb clearly signals the action and the noun signals the resource.
Five tools is a well-scoped set for a charter quoting reference server. Each tool earns its place, and there is no bloat or thinness.
The set covers the full pre-quote workflow: find airports, review aircraft specs, validate runway compatibility, estimate flight time, and receive a quote. No obvious gaps exist for the stated purpose of producing indicative charter quotes.