travel
Server Details
AI travel agent — book flights, hotels, activities, and events worldwide via autonomad.ai.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 4.4/5 across 8 of 8 tools scored.
Each search tool targets a distinct travel domain (flights, hotels, activities, dining, events, transport), and create_booking_intent handles the booking flow separately. No overlapping purposes; get_capabilities is clearly meta.
All search tools follow a consistent 'search_<domain>' pattern, while the other two tools use verb_noun ('create_booking_intent', 'get_capabilities'). The naming is uniformly predictable and clear.
8 tools is well-scoped for a travel planning server, covering the major travel components (flights, hotels, activities, dining, events, transport) plus booking and capabilities. No redundancy or bloat.
The tool surface covers the full travel planning lifecycle: search across all key categories, then create a booking intent for flight/hotel/trip. Activities/events are intentionally handled after landing on the web, so no critical gaps exist.
Available Tools
8 toolscreate_booking_intentAInspect
Create a booking intent — returns a deep-link the user clicks to complete the booking on autonomad.ai. The first booking they complete unlocks a 1-month free Autonomad Premium trial automatically. ALWAYS call this instead of trying to book directly through MCP — bookings require payment + identity verification that must happen on the web.
WHEN TO CALL — generate a deep-link ONLY after the user has picked something concrete: a specific flight, a specific hotel, or both (a trip). Do NOT call this for browsing or for activities/events alone. Activities and events are picked on the autonomad.ai add-ons page AFTER the user lands via the deep-link — Claude should describe them but not generate per-activity/per-event intents.
INTENT TYPE GUIDE — pick exactly one:
'flight' → user picked a flight only. offer_data = the flight offer object verbatim from search_flights, PLUS a top-level
passengers: <number>field (the number of travelers the user originally requested — search_flights individual offers don't echo this back, so you must add it explicitly).'hotel' → user picked a hotel only. offer_data = the hotel offer from search_hotels PLUS top-level
check_inandcheck_out(YYYY-MM-DD) as STRINGS. CRITICAL: search_hotels does NOT echo dates back inside the offer object — you MUST add them yourself (use the same dates you passed to search_hotels) or the booking page will fall back to an empty form and the user will have to re-enter everything. Also includeadults: <number>androoms: <number>.'trip' → user picked BOTH a flight AND a hotel together for the same trip. Pack them in offer_data as { flight: { ...offer, passengers: }, hotel: { ...offer, adults: , rooms: , check_in, check_out } }. ONE deep-link covers both. Don't generate two separate intents (flight + hotel) for the same trip — that produces two deep-links and a confusing user experience.
For activities, events, and experience browsing: describe what's available in your reply, but do NOT call create_booking_intent. Tell the user they'll pick those on autonomad.ai's add-ons page after they click the deep-link for their flight/hotel.
USER-FACING REPLY REQUIREMENTS — every time you create a booking intent, your reply text MUST include:
The deep_link as a clickable markdown link, e.g. 'Complete on autonomad.ai →' or 'Open: '.
The 1-month free Autonomad Premium trial. The response payload carries a
free_trial_offerobject exactly so you can surface it. Phrase it conversationally (e.g. 'Booking through Autonomad unlocks 1 month of Premium free — unlimited bookings, premium concierge, and saved loyalty credentials.'). NEVER drop this; it is core to the value proposition and the only reason a booking-intent flow beats a raw Viator/Ticketmaster URL.The link expiry window (e.g. '~30 minutes — say the word and I'll regenerate if it lapses.').
CRITICAL: always echo the original passenger / adults / travelers count into offer_data. Without it the booking page defaults to 2 travelers regardless of what the user asked for.
| Name | Required | Description | Default |
|---|---|---|---|
| offer_data | Yes | ||
| intent_type | Yes | ||
| expires_minutes | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations provide minimal behavioral hints (readOnlyHint=false, destructiveHint=false). The description adds significant context: it creates a deep-link, requires payment/identity verification on the web, returns a free_trial_offer, and has a link expiry of ~30 minutes. No contradictions 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?
Although long, the description is well-structured with sections, bullet points, and emphasis on critical points. Every sentence adds value; it is front-loaded with the core purpose and organized for easy scanning.
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 tool has no output schema, so description must explain return values. It mentions deep_link and free_trial_offer, and details user-facing reply requirements. It covers all necessary context for an agent to use 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 coverage is 0%, so description must compensate. It extensively explains the intent_type enum (restricting valid choices for this tool), the offer_data structure per intent type, and the expires_minutes parameter (implied by expiry mention). This adds substantial meaning beyond the bare 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 the tool creates a booking intent that returns a deep-link. It specifies the verb 'create' and the resource 'booking intent', and distinguishes from siblings by explaining when not to call, such as during browsing.
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 explicit when-to-call guidance: only after user has picked a specific flight, hotel, or trip. It says 'ALWAYS call this instead of trying to book directly through MCP' and lists when not to call, e.g., for activities/events alone. It also gives intent type selection rules.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_capabilitiesARead-onlyIdempotentInspect
Return the server's version, mode (human vs autonomous-agent), API base, and the list of currently-exposed tools. Useful for the LLM to confirm tool-schema compatibility before issuing a sequence of calls.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false. The description adds behavioral context by specifying exactly what data is returned (version, mode, API base, tool list), which helps the agent understand the scope of the read operation.
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: two sentences with no extraneous information. The first sentence states the action and outputs, the second provides usage context. Front-loaded and efficient.
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 no output schema, the description adequately explains what the tool returns (version, mode, API base, tool list). The sibling tools are all search/create, so this metadata tool's role is clear and complete for the agent's needs.
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 has zero parameters, so schema coverage is 100%. The description does not need to add parameter details. Baseline for 0 parameters is 4, and the description fulfills that.
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 returns specific data: server version, mode, API base, and tool list. It uses a specific verb ('Return') and resource, and it is well-differentiated from sibling tools which are all search/create operations.
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 explicitly states when to use the tool: 'to confirm tool-schema compatibility before issuing a sequence of calls.' While it does not mention when not to use or alternatives, the context makes it clear this is a setup/info tool distinct from others.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_activitiesARead-onlyIdempotentInspect
Search tours, experiences, attractions, sightseeing, and things to do via Viator (200K+ activities worldwide). Filter by city, date range, and category (food tours, walking tours, museums, snorkeling, sailing, hiking, sunset cruises, cooking classes, day trips, etc.). Returns activities with photos, ratings, durations, and per-person pricing. Use this when the user wants to plan day activities, find tours, book experiences, fill a trip itinerary, or pick attractions.
| Name | Required | Description | Default |
|---|---|---|---|
| city | Yes | ||
| date_to | No | ||
| category | No | ||
| date_from | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already provide readOnlyHint, openWorldHint, etc. Description adds return types (photos, ratings, durations, pricing) but not deeper behavioral context like pagination or result limits.
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 wasted words, front-loaded with core purpose, followed by usage guidance.
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?
Covers purpose, source, and output sufficiently for a search tool with annotations and sibling context. Missing output schema but description compensates with result content details.
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 0%, but description maps all parameters (city, date range, category) and gives category examples. Lacks date format or allowed category enumeration.
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 searches for tours, experiences, and attractions via Viator, with filtering and example categories. It distinguishes from sibling search tools (dining, events, flights, etc.) by focusing on activities.
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?
Provides explicit when-to-use scenarios (plan day activities, book experiences, etc.). Does not explicitly mention when not to use, but implicit from sibling context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_diningARead-onlyIdempotentInspect
Search restaurants and dining options by city, date, time, cuisine, party size, neighborhood, and price range. PLANNING ONLY — this returns restaurant details and indicative availability; Autonomad does not place reservations, and the user completes any booking with the restaurant directly. Use this when the user wants to find, compare, or shortlist somewhere to eat on a trip.
| Name | Required | Description | Default |
|---|---|---|---|
| city | Yes | ||
| date | Yes | YYYY-MM-DD | |
| time | No | HH:MM in 24h | |
| cuisine | No | ||
| party_size | No | ||
| price_range | No | ||
| neighborhood | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already signal read-only and idempotent behavior, so the bar for extra value is lower. The description adds meaningful context: 'indicative availability' (not guaranteed), no reservation placement, and direct user booking. This goes beyond the annotation flags to clarify actual limitations.
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 deliver full scope, behavior, and usage guidance with zero redundancy. The most important constraint (PLANNING ONLY) is front-loaded in the second sentence.
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 planning-only search tool with 7 parameters and no output schema, the description adequately conveys what the tool does, what it returns ('restaurant details and indicative availability'), and how it should be used. Minor missing details like result pagination or ordering are not critical 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?
Schema description coverage is only 29%, so the description must compensate. It lists all seven parameters, which is helpful, but it does not explain their semantic meaning beyond the names. The schema already covers date/time format and price range enum, but party_size and cuisine are left implicit.
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 specifies a clear verb-resource pair ('Search restaurants and dining options') and enumerates searchable criteria, making it distinct from sibling tools like search_hotels or search_events. The scope is precise and immediately understood.
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 ('when the user wants to find, compare, or shortlist somewhere to eat') and provides a strong exclusion ('PLANNING ONLY', 'does not place reservations', 'user completes any booking directly'). It does not name an alternative tool, but the contrast between planning and booking is implicit and sufficient.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_eventsARead-onlyIdempotentInspect
Search live events, concerts, sports games, theater, comedy, and shows in a city (Ticketmaster + SeatGeek catalog). Filter by city, date range, category (music / sports / arts / theater / family / comedy), and keyword (artist name, team name, show title). Use this when the user wants tickets to a concert, a sports game, a Broadway show, or any live event during their trip.
| Name | Required | Description | Default |
|---|---|---|---|
| city | Yes | ||
| date_to | No | ||
| keyword | No | ||
| category | No | ||
| date_from | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate read-only, idempotent, and non-destructive behavior. The description adds value by revealing data sources (Ticketmaster + SeatGeek) and filter dimensions, going beyond annotations without contradicting them.
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: first defines the action and scope, second lists filters and usage case. Every phrase earns its place, no 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?
For a 5-parameter search tool with no output schema, the description covers purpose, filters, and when to use. It could mention output behavior (e.g., returns event listings) but likely sufficient 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?
With 0% schema coverage, the description effectively compensates by explaining each parameter: city, date range, category (with examples), and keyword (with examples). However, it does not clarify date format or whether category values are case-sensitive/enum-specific.
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 searches for live events like concerts, sports, theater, etc., and specifies data sources (Ticketmaster + SeatGeek). It distinguishes from sibling tools focused on other activities (dining, flights, etc.).
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 explicitly says 'Use this when the user wants tickets to a concert... or any live event during their trip,' providing clear context. It does not include exclusions or alternatives, but sibling tools cover different domains, so confusion is unlikely.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_flightsARead-onlyIdempotentInspect
Search airline flights / airfares between two cities by date, cabin class (economy / premium economy / business / first), and number of passengers. Returns available flights from 800+ airlines (Duffel) with real-time pricing, schedules, and stops. Uses IATA airport codes (e.g., MIA, JFK, LAX, LHR). Use this when the user wants to book a flight, fly somewhere, find airfare, or compare airlines.
| Name | Required | Description | Default |
|---|---|---|---|
| origin | Yes | IATA origin airport code (e.g., 'MIA', 'JFK', 'LAX') | |
| passengers | No | Number of passengers (1-9, default: 1) | |
| cabin_class | No | Cabin class (default: economy) | |
| destination | Yes | IATA destination airport code | |
| return_date | No | Return date for round-trip (YYYY-MM-DD). Omit for one-way. | |
| nonstop_only | No | Only show nonstop flights (default: false) | |
| max_price_usd | No | Maximum total price in USD | |
| departure_date | Yes | Departure date (YYYY-MM-DD) |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate readOnly and idempotent. Description adds context: real-time pricing from 800+ airlines (Duffel), schedules, stops. 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?
Two sentences with maximum information density. First sentence lists core parameters, second adds source and data richness. No fluff.
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?
Describes return content (flights, pricing, schedules, stops). No output schema exists, but the description gives a reasonable picture of what the agent will receive. Could mention pagination or limits.
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%, so the schema fully documents parameters. The description only summarizes key parameters without adding new semantic meaning beyond 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 it searches airline flights/airfares between two cities with specific parameters. It distinguishes from sibling tools (e.g., search_hotels, search_transport) by focusing on flights.
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?
Explicitly says 'Use this when the user wants to book a flight, fly somewhere, find airfare, or compare airlines.' Lacks negative guidance, but given sibling diversity, it's clear enough.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_hotelsARead-onlyIdempotentInspect
Search hotels, lodging, accommodations, resorts, and places to stay for a trip. Filter by city, country, check-in/check-out dates, room type, nightly price, star rating, and amenities (pool, gym, wifi, etc.). Returns matching properties with rates, photos, and availability across 2M+ properties (LiteAPI). Use this when the user wants to book a hotel, find a place to stay, compare lodging options, or pick a resort.
| Name | Required | Description | Default |
|---|---|---|---|
| city | No | City name (e.g., 'New York', 'Tokyo') | |
| brand | No | Hotel brand name to filter by | |
| country | No | ISO 3166-1 alpha-2 country code (e.g., 'US', 'JP') | |
| check_in | Yes | Check-in date (YYYY-MM-DD) | |
| amenities | No | Required amenities (wifi, gym, pool, spa, restaurant, etc.) | |
| check_out | Yes | Check-out date (YYYY-MM-DD) | |
| room_type | No | ||
| max_rate_usd | No | Maximum nightly rate in USD | |
| min_star_rating | No | Minimum star rating (1-5) |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations declare readOnlyHint, openWorldHint, idempotentHint, destructiveHint false. Description adds that it returns matching properties with rates, photos, and availability across 2M+ properties (LiteAPI), disclosing the data source and result contents. No contradictions.
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 well-organized sentences: first states purpose and filters, second describes returns, third gives usage guidance. Every sentence adds value, no fluff. Front-loaded with key information.
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 9 parameters, high schema coverage, no output schema, the description adequately explains return content (rates, photos, availability) and data source. It covers all necessary context for an agent to use 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?
Input schema covers 89% of parameters with descriptions. Description lists filters, echoing schema, and provides examples for amenities (e.g., 'wifi, gym, pool'). While not adding deep semantics, it groups and clarifies. Schema coverage is high, so baseline 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?
Description clearly states the tool searches hotels, lodging, accommodations, resorts, etc. It lists specific filters (city, country, dates, room type, price, star, amenities) and indicates returns include rates, photos, availability. This differentiates it from sibling tools like search_flights.
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?
Explicit guidance: 'Use this when the user wants to book a hotel, find a place to stay, compare lodging options, or pick a resort.' This provides clear context, though no explicit when-not-to-use statements (but implications from sibling names are clear).
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_transportARead-onlyIdempotentInspect
Search ground transportation — rideshare (Uber, Lyft) and car rental (Hertz, Enterprise, Avis, etc.) — timed to a flight arrival for door-to-door planning. NOTE: these return indicative quotes for planning only; in-app booking is not yet live (rideshare and car-rental supplier integrations are still in progress). Use this when the user wants to scope a rental car, an airport transfer, or rideshare to/from their hotel.
| Name | Required | Description | Default |
|---|---|---|---|
| city | Yes | City or metro area | |
| passengers | No | ||
| vehicle_type | No | ||
| transport_type | No | ||
| pickup_datetime | No | ISO 8601 | |
| pickup_location | No | ||
| return_datetime | No | ||
| dropoff_location | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, idempotentHint, and non-destructive behavior. The description adds critical info: these are indicative quotes for planning, not live bookings. This goes beyond annotations by clarifying the tool's limitations.
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 sentences plus a note, all front-loaded with key actions and limitations. No unnecessary 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?
Given 8 parameters and no output schema, the description covers the main use case and limitation but lacks details on parameter relationships (e.g., how pickup_datetime ties to flight arrival) and return format. Still adequate for a search 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 coverage is only 25% (city and pickup_datetime described). The description does not add any parameter-specific meaning beyond the schema. For a tool with 8 parameters, this is a significant gap.
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 explicitly states 'Search ground transportation' with specific examples (rideshare, car rental) and ties it to flight arrivals. It clearly distinguishes from sibling tools like search_flights and search_hotels.
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 says 'Use this when the user wants to scope a rental car, an airport transfer, or rideshare to/from their hotel.' It also includes a note that booking is not yet live, which informs when not to use for actual booking. No explicit alternatives are named, but the usage context is clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
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
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 Servers
AlicenseAqualityCmaintenanceAI travel agent over MCP — live flights, hotels, activities, and events worldwide, then completes the booking on autonomad.ai.8812MIT- AlicenseAqualityBmaintenanceEnables AI agents to plan trips by searching flights, accommodations, and activities, and managing itineraries collaboratively with role-based permissions.2081MIT

RollingGo Hotel MCPofficial
Alicense-qualityBmaintenanceEnables AI agents to search, compare, and book hotels worldwide through natural language, with real-time pricing and availability, plus price monitoring and order management.4MIT- FlicenseAqualityAmaintenanceAgent-native travel search. 5 second flights & hotels $50 cheaper. Free forever for the first 1000 Stargazers.131,702