skyaccess
Server Details
Search live empty leg private jet flights and get charter price estimates. Free, no API key.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Available Tools
5 toolsbooking_handoffGet the booking link for an empty leg flightARead-onlyIdempotentInspect
Return the SkyAccess booking page link for a specific empty leg flight, for handing to a customer so they can review and book it themselves. This is READ-ONLY: it does not create, hold, modify or cancel any booking, and no booking exists until the customer completes it on the page. Use request_booking instead if the customer wants a specialist to contact them.
| Name | Required | Description | Default |
|---|---|---|---|
| flightId | Yes | The flight id returned in the `flightId` field of a search_empty_legs result |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description goes beyond the readOnlyHint and destructiveHint annotations by explicitly stating that it does not create, hold, modify, or cancel any booking, and that no booking exists until the customer completes it. This clarifies the side-effect boundary clearly for an agent.
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: it states what is returned, the read-only safety property, and the key alternative in three focused sentences. No filler or redundant information is present.
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 simple one-parameter, read-only tool with no output schema, the description provides everything an agent needs: the output type, the use case, the safety semantics, and the alternative tool. Nothing critical is missing.
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?
The input schema already documents the only parameter, flightId, with a clear description referencing search_empty_legs results. The tool description adds little beyond calling it 'a specific empty leg flight,' so it relies appropriately on the schema's 100% coverage.
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 uses a specific verb ('Return') and names the exact resource ('the SkyAccess booking page link') and target ('a specific empty leg flight'). It clearly distinguishes this tool from the sibling 'request_booking' by outlining its self-service purpose.
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?
It explicitly states when to use the tool: when handing a link to a customer for self-review and booking. It also gives a direct alternative instruction: 'Use request_booking instead if the customer wants a specialist to contact them.' This makes the selection logic unambiguous.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_charter_estimateGet charter price estimateARead-onlyIdempotentInspect
Returns an indicative price range (min/max USD) for a private charter flight between two locations. Optionally filter by aircraft category and passenger count. When no category is specified, returns estimates for all aircraft suitable for the route and group size.
| Name | Required | Description | Default |
|---|---|---|---|
| origin | Yes | Departure city or airport code (required) — e.g. "Los Angeles" or "KLAX" | |
| passengers | No | Number of passengers (used to filter suitable aircraft) | |
| destination | Yes | Arrival city or airport code (required) — e.g. "New York" or "KJFK" | |
| aircraftCategory | No | Preferred aircraft category. One of: TURBOPROP, LIGHT_JET, MID_SIZE_JET, SUPER_MID_SIZE_JET, HEAVY_JET, ULTRA_LONG_RANGE, VERY_LIGHT_JET. When omitted, estimates for all suitable categories are returned. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, idempotentHint, and destructiveHint, covering the safety profile. The description adds useful behavioral detail about returning ranges and falling back to all suitable aircraft categories when category is omitted, but it does not disclose additional traits such as accuracy, availability, or response structure.
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?
Two concise sentences front-load the core purpose and then add only necessary behavioral detail about filtering and default behavior. Every sentence earns its place with no redundancy or filler.
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 simple read-only estimation tool, the description covers the operation, return range, optional filters, and default behavior. It is slightly incomplete in that it does not clarify what 'suitable' means beyond route and group size or how the min/max range is derived, but the schema and annotations carry much of the remaining burden.
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 input schema already documents all parameters. The description lightly restates that category and passenger count are optional filters, but it does not add meaningful information beyond the schema, justifying the baseline score of 3.
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 states a specific action ('Returns an indicative price range') and resource ('private charter flight between two locations'), making the tool's purpose obvious. It does not explicitly contrast itself with sibling tools like get_flight or request_booking, so it misses the top score for sibling differentiation.
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 clear context for when the tool is appropriate: when an indicative price range for a charter is needed. It also explains the optional filtering behavior and the default when no aircraft category is supplied, but it does not state when to prefer a sibling tool over this one.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_flightGet a single empty leg flight by idARead-onlyIdempotentInspect
Look up one empty leg flight by its id and return the same fields search_empty_legs returns: route, departure time, all-in price, aircraft type, available seats, amenities and a booking link. Use this to re-check a specific flight you found earlier. Returns a not-available message if the flight is no longer published.
| Name | Required | Description | Default |
|---|---|---|---|
| flightId | Yes | The flight id returned in the `flightId` field of a search_empty_legs result |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Beyond the readOnly and idempotent annotations, the description discloses the exact response shape (same fields as search_empty_legs, with an enumerated list) and an important edge case: a not-available message if the flight is no longer published. This gives the agent useful expectations about the call's behavior.
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 three sentences, front-loads the core action, and every sentence earns its place: what it does, the returned fields, when to use it, and the stale-flight edge case. There is no redundant wording.
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 simple single-parameter read-only lookup with no output schema, the description is complete: it specifies the input, the return fields, the usage context, and the not-found behavior. Sibling tools and annotations cover the remaining context.
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?
The schema already documents flightId fully, including its source in the search_empty_legs result, and schema coverage is 100%. The description adds no new parameter meaning beyond saying 'by its id,' so the baseline score of 3 is appropriate.
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 uses a specific verb ('Look up') and a precise resource ('one empty leg flight by its id'), and it clearly distinguishes this tool from the sibling search_empty_legs by noting it returns the same fields for a single known flight. The purpose is unambiguous and differentiated.
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 gives a clear use case: re-check a specific flight found earlier via search_empty_legs. It implies the alternative (use search_empty_legs for finding flights) by naming that sibling, though it does not explicitly state when not to use this tool or list all alternative tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
request_bookingRequest a charter bookingAInspect
Submit a charter flight booking request. A SkyAccess specialist will contact the requester within 2 hours to confirm availability and pricing. No payment is required at this stage — this initiates the enquiry.
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Full name of the requester (required) | |
| Yes | Email address of the requester (required) — a specialist will reply here | ||
| notes | No | Optional notes or special requests (e.g. catering, pet, preferred aircraft) | |
| origin | Yes | Departure city or airport (required) — e.g. "Los Angeles" or "LAX" | |
| passengers | Yes | Number of passengers (required) | |
| destination | Yes | Arrival city or airport (required) — e.g. "Miami" or "KMIA" | |
| departureDate | Yes | Departure date in ISO format (required) — e.g. "2026-08-15" |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Beyond the annotations, the description discloses meaningful behavioral context: no payment is collected, a SkyAccess specialist will contact the requester within 2 hours, and this only initiates an enquiry. This adds process-level transparency that the annotations alone do not provide.
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?
Three short sentences with the core action front-loaded. Each sentence contributes a distinct fact: the action, the follow-up behavior, and the no-payment condition. There is no redundant or filler content.
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 that there is no output schema, the description adequately explains the asynchronous response and the enquiry nature of the tool. It could say a little more about what the caller should expect immediately after submission, but the essential workflow is covered.
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 description is not required to document parameters. It adds a small amount of relevant context by noting that no payment is required, which indirectly explains the absence of a payment parameter.
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 uses a clear verb ('Submit') and a specific resource ('charter flight booking request'), and it clarifies this is an enquiry-stage action. It does not explicitly name sibling tools, so it stops short of full differentiation, but the purpose is unmistakable.
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 when to use the tool by stating that no payment is required and that a specialist will confirm availability and pricing. It does not explicitly say when to use booking_handoff or get_charter_estimate instead, leaving that distinction to inference.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_empty_legsSearch empty leg flightsARead-onlyIdempotentInspect
Search available empty leg flights by origin, destination, date range, passenger count, and an optional max_price ceiling. Returns up to 5 matching flights with route, departure time, price, aircraft type, available seats, and a booking link. Use this to find discounted private jet availability for a specific route. A flight with price: null has no published price ("Contact for price"); such flights are returned even when max_price is set, so never present one as being within the cap.
| Name | Required | Description | Default |
|---|---|---|---|
| origin | No | Departure city or airport code (e.g. "Los Angeles" or "LAX") | |
| max_price | No | Optional price ceiling in USD (all-in customer price). Only legs at or below this figure are returned. One exception, by design: legs whose operator has not confirmed they will honour a published price are still returned regardless of the cap, with `price: null` — describe those as "Contact for price" and do NOT tell the customer they fall within the cap, because their price is unknown, not low. | |
| passengers | No | Number of passengers | |
| destination | No | Arrival city or airport code (e.g. "Las Vegas" or "KLAS") | |
| departureDateTo | No | Latest departure date in ISO format | |
| departureDateFrom | No | Earliest departure date in ISO format (e.g. "2026-07-10") |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already convey read-only, idempotent, and non-destructive behavior. The description adds critical beyond-annotation context: returns up to 5 matches, enumerates returned fields, and discloses the non-obvious 'price: null' exception where flights are returned even when max_price is set and must never be presented as within the cap.
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?
Three sentences: purpose, return contents, and a crucial pricing caveat. Each sentence earns its place and the most important behavioral exception is clearly front-loaded and separated from the rest.
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?
With no output schema, the description compensates by specifying the output shape: up to 5 flights with route, departure time, price, aircraft type, seats, and booking link. Combined with the detailed input schema and strong annotations, the description gives an agent everything needed to call the tool correctly.
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 every parameter, including the max_price exception. The description mostly restates the parameter names and the null-price caveat rather than adding materially new parameter-level meaning.
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: 'Search available empty leg flights by origin, destination, date range, passenger count, and an optional max_price ceiling.' It clearly distinguishes itself from siblings by focusing on empty-leg availability rather than charter estimates, flight details, or booking actions.
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?
It explicitly states when to use the tool: 'Use this to find discounted private jet availability for a specific route.' It does not name alternatives or state when not to use it, but the sibling list and clear purpose make the intended usage sufficiently clear.
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
booking_handoff - First observed
get_charter_estimate - First observed
get_flight - First observed
request_booking - First observed
search_empty_legs
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.
Live flight prices and working booking links for AI agents and travel apps.
Free, no-login flight search with real-time pricing from multiple airlines.
Related MCP Servers
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.-- AlicenseAqualityCmaintenanceGive AI agents the ability to search private jets, compare aircraft, get quotes, and submit charter requests through natural language.713MIT
- AlicenseNot gradedqualityDmaintenanceProvides real-time flight status, airport weather, delays, cheap flight deals, and TSA wait times without requiring an API key.13MIT
- AlicenseNot gradedqualityBmaintenanceFlight search for AI agents: flexible-date cheapest round-trips with a good-price verdict from historical data. Hosted remote MCP, free, no key.3MIT
Glama MCP Gateway
Add one secure layer between your agents and this server.
TDQS
search_empty_legs, get_flight, and booking_handoff all return booking links, so booking_handoff overlaps somewhat with get_flight's existing link output. However, each tool's focus (multi-result search, single-flight detail, customer handoff link) is generally clear from the descriptions.
Four tools follow a clear verb_noun pattern: search_empty_legs, get_flight, get_charter_estimate, and request_booking. booking_handoff breaks this pattern as a noun-led compound, but the naming remains readable and only mildly inconsistent.
Five tools is well-scoped for this private aviation domain: flight search, flight detail, charter pricing, and two distinct booking paths. Each tool serves a meaningful step in the workflow without unnecessary overlap or bloat.
The set covers the core workflows: discovering empty-leg flights, reviewing a specific flight, handing off a booking link, estimating charter prices, and submitting charter requests. Missing status or cancellation endpoints for in-progress requests are minor gaps since specialist follow-up happens outside the server.