Tripyana London Chauffeur
Server Details
Fixed London chauffeur prices: airport & cruise transfers, hourly hire, day trips, booking links.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- tripyana/tripyana-mcp
- GitHub Stars
- 0
- Server Listing
- Tripyana London Chauffeur
TDQS
The three pricing tools are distinct by service type (hourly, meet & greet, transfers), and company info and booking link are clearly separate. Search_services overlaps with list_day_trips and the pricing tools, so an agent could retrieve duplicate information, but descriptions generally prevent serious confusion.
All tools use a consistent lowercase snake_case verb_noun pattern: get_ for facts and prices, list_ for catalogues, and search_ for discovery. The naming clearly indicates both the action and the resource.
Seven tools is well-scoped for a chauffeur-service information server. Each tool covers a distinct part of the customer journey: pricing, services, company info, and booking handoff, with no apparent redundancy.
The tool surface covers airport/cruise transfers, meet and greet, hourly hire, day trips, broader service search, company policies, and a booking link. There are no obvious dead ends for a typical quote or booking inquiry.
Available Tools
7 toolsget_booking_linkPre-filled booking linkAInspect
Build a link to Tripyana's online booking form with the trip details already filled in (date, time, passengers, luggage, pickup, drop-off, contact details), so the traveller only picks the car and pays. No booking is created by this tool.
| Name | Required | Description | Default |
|---|---|---|---|
| date | No | Pickup date YYYY-MM-DD | |
| note | No | Flight number, hotel name, special requests | |
| time | No | Pickup time HH:MM (24h, UK time) | |
| No | |||
| phone | No | International format, e.g. +44 7… | |
| pickup | No | Pickup address or airport, e.g. "Heathrow Terminal 5" | |
| dropoff | No | ||
| luggage | No | ||
| language | No | Form language (default en) | |
| last_name | No | ||
| first_name | No | ||
| passengers | No | ||
| pickup_latlng | No | Pickup coordinates "lat,lng" (recommended with pickup) | |
| dropoff_latlng | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full behavioral burden, and it discloses the single most important trait: this tool only generates a pre-filled link and never creates a booking, plus what data is embedded in the link. It does not mention return format or error/failure behavior, which keeps it from a 5, but the highest-risk behavioral fact is front and centre.
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 sentences with zero waste. The core action and beneficiary ('so the traveller only picks the car and pays') are front-loaded, and the critical 'No booking is created' caveat gets its own sentence. Every word earns its place.
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 14 parameters, the tool's behavior is simple, and the description covers the purpose, the scope of embedded data, and the non-mutating nature. The main omission is the return shape — there is no output schema and the description never states what is returned, though 'Build a link' strongly implies a URL. Slightly more would make it fully complete.
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 50%, so the description must partially compensate. It enumerates the parameter categories (date, time, passengers, luggage, pickup, drop-off, contact details), covering roughly 10 of 14 parameters, but adds little semantic depth beyond the schema — nothing about coordinates, note, or language interplay. It partially bridges the gap but does not fully compensate for undocumented params.
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 a specific verb and resource ('Build a link to Tripyana's online booking form'), states what gets pre-filled (date, time, passengers, luggage, pickup, drop-off, contact details), and the 'No booking is created by this tool' clause draws a clear line against booking-creation tools. Among siblings, which are price, info, and search tools, this is unmistakably the link-builder.
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 conveys a clear use case — when a traveller should finalise car choice and payment themselves — and gives an explicit when-not ('No booking is created by this tool'). It stops short of a 5 because it never names an alternative sibling (e.g., use get_transfer_price for a quote), leaving differentiation to inference.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_company_infoAbout TripyanaAInspect
Company facts: licence, company number, address, phone/WhatsApp, languages, hours, what every fare includes, cancellation policy and the main service pages in English and Arabic.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the burden of behavioral disclosure. It communicates that the tool returns a read-only set of company facts and lists those facts, which is sufficient for a no-parameter information lookup. It does not detail response structure, but the enumeration partially compensates.
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 a single front-loaded sentence that leads with 'Company facts' and then provides a focused, semicolon-separated list of content areas. Every item earns its place, with no filler, repetition, or extraneous detail.
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, no-argument, read-only company info lookup, the description is nearly complete: it names the main content categories an agent would need to decide whether this tool satisfies a request. The lack of an output schema is mitigated by the explicit enumeration of returned information areas.
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 tool has zero parameters, and the empty schema fully defines the parameter space, so there is nothing substantive to document. The description adds useful context about what data the call returns, satisfying the baseline for no-parameter tools.
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 identifies the resource—Tripyana company facts—and enumerates the exact categories covered, including licence, contact details, policies, and service pages. This makes it easy to distinguish from the pricing, booking, and search sibling tools even without an explicit verb.
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 itemized content gives an agent clear context for when to call this tool: whenever company-level facts or general policy details are needed. It does not explicitly state 'use this instead of price/search tools,' but the boundary is obvious from the listed content and sibling names.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_hourly_priceHourly / full-day chauffeur priceAInspect
Price of a chauffeur-driven Mercedes by the hour in London (4-hour minimum), the fixed 8-hour full-day rate, and the rules for trips outside London (8-hour minimum, distance fee beyond 20 miles from central London, Manchester day rate). Returns an indicative total per vehicle; the booking form confirms the exact figure.
| Name | Required | Description | Default |
|---|---|---|---|
| hours | Yes | Hours needed (minimum 4 in London, 8 outside London) | |
| vehicle | No | Vehicle class. Omit to get all four. | |
| language | No | ||
| passengers | No | ||
| destination | No | Main destination if outside London, e.g. "Manchester", "Oxford" | |
| one_way_miles_from_central_london | No | Driving distance from central London to the farthest point, if known |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description transparently notes that the result is an indicative total, not the exact booking price, and explains rules such as minimums and distance surcharges. This sets clear expectations about the tool's outputs and constraints.
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 two concise sentences, front-loaded with the core pricing rules and followed by the output nature. No unnecessary words or redundant details.
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 the moderate complexity (six parameters, no output schema), the description provides sufficient context to understand the tool's purpose and key constraints. It does not detail every parameter but covers the essential context for a pricing tool.
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 descriptions cover 67% of parameters, but the tool description adds only modest clarification. It reinforces the meaning of hours and destination but leaves language and passengers unexplained. Some compensation is provided, but not enough to fully clarify all 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?
The description clearly states what the tool does: it provides pricing for a chauffeur-driven Mercedes, covering hourly and full-day rates, with specific rules for London and outside London. This distinguishes it from sibling tools like transfer or meet-and-greet pricing.
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 usage for hourly chauffeur services and mentions conditions like minimum hours and distance fees, but it does not explicitly contrast with alternative tools. It lacks direct guidance on when to choose this tool over get_transfer_price or get_meet_greet_price.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_meet_greet_priceHeathrow VIP meet & greet / student pickup priceBInspect
Fixed prices for the Heathrow VIP Meet & Assist service (greeter at the aircraft door, Fast Track passport lane, escort to the car; optional chauffeur transfer to the hotel) and for student / unaccompanied-minor airport pickup at any London airport.
| Name | Required | Description | Default |
|---|---|---|---|
| guests | No | Number of guests | |
| service | No | Which service (default vip-meet-greet) | |
| language | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations present, the description carries more weight. It does disclose that prices are fixed and lists service components, but it does not clarify return format, currency, whether the optional chauffeur transfer affects price, or any limitations. This is partial transparency but not full.
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 a single front-loaded sentence that states the purpose first and then provides useful parenthetical details about the service inclusions. It is compact and avoids redundancy, though slightly dense due to multiple parenthetical clauses.
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?
Without an output schema, the description should explain what the tool returns, but it only says prices are fixed. It also does not address the language parameter or clarify how the optional chauffeur transfer affects pricing. An agent would still be uncertain about the exact response and edge conditions.
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 67% and the description adds meaning by explaining what the vip-meet-greet and student-pickup service values refer to, including the Heathrow-specific service details. However, it adds no information about the guests or language parameters, leaving part of the semantics to the schema.
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 that the tool returns fixed prices for two specific services: Heathrow VIP Meet & Assist and student/unaccompanied-minor pickup. It is specific enough to distinguish from the sibling pricing tools by service type, but it does not explicitly contrast itself with get_transfer_price or get_hourly_price.
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?
Usage is implied by the service names and scope: Heathrow VIP Meet & Assist and student pickup at London airports. However, the description gives no explicit guidance about when to choose this tool over sibling pricing tools, and no exclusions or alternative recommendations.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_transfer_priceFixed transfer priceAInspect
Fixed one-way chauffeur fare (GBP, per car, all-inclusive) between a London airport or cruise port and central London, for each vehicle class, with the recommended car for the party size and the page to book on.
| Name | Required | Description | Default |
|---|---|---|---|
| route | Yes | Route key. heathrow-central-london, gatwick-central-london, stansted-central-london, luton-central-london, heathrow-gatwick, heathrow-southampton-cruise, heathrow-dover-cruise | |
| luggage | No | Number of large suitcases | |
| vehicle | No | Vehicle class. Omit to get all four. | |
| language | No | Language of the page link to return (default en) | |
| passengers | No | Number of passengers | |
| return_trip | No | True if a return leg is also needed |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the burden. The description indicates a read-only operation returning fare information and a booking page; there is no mention of side effects like making reservations or modifying data. This is transparent enough, though it does not explicitly state 'read-only'.
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 a single, well-structured sentence that lists all key return elements (fare, recommended car, booking page) without unnecessary verbosity. It is concise and easily parsed.
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 main output (fare, recommended car, booking page) and mentions currency (GBP) and scope (airport/cruise port to central London). However, it does not specify the output format (e.g., JSON structure, list vs. object) or handle edge cases like 'no available car' or 'invalid route', but these are not required for a basic understanding.
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 have clear descriptions in the schema, including enumerations with examples (route), units (luggage as large suitcases), and default behavior (vehicle omitted returns all). The descriptions are unambiguous and cover the purpose of each 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 clearly states that the tool returns a fixed one-way chauffeur fare between London airports/cruise ports and central London, including recommended car and booking page. It is specific enough to distinguish from hourly or meet-and-greet pricing, though it does not explicitly contrast with those sibling 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 does not explicitly state when to use this tool versus alternatives like get_hourly_price or get_meet_greet_price. It implies usage for fixed transfers, but lacks clear guidance on selection criteria, such as 'use for one-way transfers' or 'use for fixed fares only'.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_day_tripsPrivate day trips from LondonAInspect
Catalogue of private day trips from London by chauffeur-driven car (Stonehenge & Bath, Cotswolds, Windsor, Oxford, Cambridge, Brighton, Canterbury & Dover, Bicester Village, Harry Potter studios, Woburn Safari, London landmarks and shopping tours) with fixed whole-car return prices and page links.
| Name | Required | Description | Default |
|---|---|---|---|
| language | No | Page language (default en) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the behavioral disclosure burden. It usefully reveals that the output includes fixed whole-car return prices and page links, and that the scope is private chauffeur-driven day trips. It does not clarify output structure, pagination, or whether the list is exhaustive, but for a simple catalogue tool this is acceptable.
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 one sentence but packed with useful specifics: mode of transport, destination list, pricing model, and output links. It is front-loaded with the core purpose, and the long destination list is informative rather than wasted words.
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 list tool with one optional parameter and no output schema, the description gives enough context: the catalogue's scope, contents, and that prices and links are included. It does not detail exact return fields, but the tool's simplicity and the described output content make it reasonably complete 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?
The single language parameter is fully documented by the input schema with an enum and description, so the description does not need to add much. It adds no additional meaning about how the language parameter affects the catalogue, but schema coverage is complete, so the baseline of 3 applies.
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 that the tool provides a catalogue of private day trips from London, enumerating destinations and noting it includes fixed prices and page links. This makes its purpose understandable, though it lacks an explicit verb like 'lists' and does not directly contrast itself with sibling 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 usage: an agent should call this when the user is looking for available private day trips from London. However, it gives no explicit guidance about when to prefer this over search_services or the pricing tools, and it does not mention any exclusions or alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_servicesFind a Tripyana service pageAInspect
Search Tripyana's services (airport transfers, cruise transfers, VIP meet and greet, student pickup, executive cars, wedding cars, fleet, day trips, Manchester, Scotland, Lake District, Istanbul, Bosnia) and return the matching pages with a one-paragraph summary and published prices.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| query | Yes | Keywords, e.g. "Gatwick", "meet and greet", "wedding", "Southampton cruise" | |
| language | No | Restrict to English or Arabic pages |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description indicates a read-only operation (search and return pages). No side effects or destructive actions are mentioned. Since no annotations are provided, the description carries the burden; it is reasonably transparent about being a search operation, though it doesn't address rate limits or authentication.
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 a single sentence that is reasonably concise. It lists many examples, which adds length but also value by clarifying the types of queries. The sentence is well-structured and front-loaded with the main action ('Search... and return matching pages').
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 search tool with three parameters and no output schema, the description provides sufficient context: it specifies what the tool searches, what it returns (pages with summary and prices), and gives example query terms. It does not detail output format or edge cases, but these are not critical for basic usage. Sibling tools add context, though the description itself is fairly complete.
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 covers two of three parameters (query and language) with descriptions, but limit lacks any schema description. The tool description adds value by providing example query values (e.g., 'Gatwick', 'wedding') which clarify expected input, but it does not explain the limit parameter. Overall, it adds some semantic context beyond the schema but not fully.
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 the tool's function: searching Tripyana's services and returning matching pages with summaries and prices. It also lists example service types and locations, which distinguishes it from sibling tools like get_transfer_price or list_day_trips that have narrower scopes.
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 for general service discovery but does not explicitly contrast it with sibling tools or state when to prefer this over more specific alternatives (e.g., get_transfer_price). The examples give practical hints but lack explicit guidance on selection criteria.
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.
7 tool updates
- First observed
get_booking_link - First observed
get_company_info - First observed
get_hourly_price - First observed
get_meet_greet_price - First observed
get_transfer_price - First observed
list_day_trips - First observed
search_services
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
Book London airport & cruise port transfers to any UK address. Fixed prices, free cancellation.
Private chauffeured transport in Los Angeles. Price any trip at a fixed all-in rate, no account.
Fixed-price GC & Brisbane airport and cruise transfers. Live quotes, human-confirmed bookings.
Book a private driver in Paris: live quotes, airport transfers, tours, VIP Meet & Greet. No auth.
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceEnables AI agents to get fixed-price quotes and book London airport transfers, with flight validation and inter-agent communication via A2A protocol.-
- AlicenseAqualityDmaintenanceEnables booking premium private chauffeur transfers in Paris and across Europe directly from AI agents. Provides tools to list vehicles, get quotes, book rides, and retrieve service information.4MIT

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 gradedqualityBmaintenanceQuery current and historical UK official figures (tax bands, minimum wage, benefits, energy price cap and 100+ more) with effective dates and links to official government sources. Data refreshed whenever the official sources change.-
Glama MCP Gateway
Add one secure layer between your agents and this server.