airport-transfers
Server Details
Airport transfers: Novi Sad ↔ Belgrade Airport (BEG). Look up prices and book a ride.
- 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.2/5 across 6 of 6 tools scored.
Each tool has a distinct purpose: route discovery, pricing, booking creation, status checking, and service info. No overlap or ambiguity.
All tool names use consistent snake_case and follow a verb_noun pattern (create_booking_request, estimate_price, etc.).
Six tools is well-scoped for an airport transfer booking domain, covering discovery, pricing, booking, and status without excess.
The tool set covers the full workflow: route listing, pricing, booking creation, status checking, and business info. No obvious missing operations for the stated domain.
Available Tools
6 toolscreate_booking_requestAInspect
Start a provisional airport-transfer booking. This does NOT finalize a booking — it emails the passenger a one-tap confirmation link, and the ride is only booked once they click it. Payment is to the driver (cash or card); no online payment is needed. Call estimate_price first to confirm the vehicle + price with the user, then call this. Always tell the user to check their email to confirm.
| Name | Required | Description | Default |
|---|---|---|---|
| locale | No | Language for the confirmation email. Default en. | |
| luggage | No | Number of large bags (optional). | |
| vehicle | No | Optional vehicle tier name (e.g. 'Group XL'). Defaults to the cheapest vehicle that fits the group. | |
| direction | Yes | to_airport = going to the airport; from_airport = pickup at the airport. | |
| routeSlug | Yes | Route slug from list_routes. | |
| passengers | Yes | Number of passengers. | |
| pickupDate | Yes | Pickup date, YYYY-MM-DD, Belgrade local time. | |
| pickupTime | Yes | Pickup time, HH:MM (24h), Belgrade local time. | |
| flightNumber | No | Flight number (recommended for airport pickups). | |
| passengerName | Yes | Full name of the passenger. | |
| pickupAddress | No | Pickup or drop-off address (optional). | |
| passengerEmail | Yes | Passenger email — the confirmation link is sent here. | |
| passengerPhone | Yes | Passenger phone in international format. | |
| specialRequests | No | Notes, e.g. child seat needed (optional). |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description fully defines behavior: provisional, emails confirmation link, payment to driver, no online payment. It does not cover idempotency or rate limits but covers key side effects.
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?
Description is well-structured, front-loading the critical distinction (provisional vs final). Each sentence adds value, though slightly verbose. Could be slightly more concise, but effectively communicates all necessary points.
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 14 parameters and no output schema, the description covers essential context: provisional nature, email confirmation, payment method, and prerequisite tool call. Missing return value info, but adequate for a mutation 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 100% with descriptions already present. The tool description does not add significant per-parameter detail beyond the schema, but provides workflow context (e.g., call estimate_price first). Meets baseline for high schema 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 clearly states it starts a provisional booking and explicitly says it does not finalize, distinguishing it from final booking tools. It also references estimate_price, aiding differentiation from 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?
Provides explicit prerequisites: 'Call estimate_price first'. Advises telling the user to check email. Clearly states when to use (provisional booking) and when not (final action).
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
estimate_priceAInspect
Estimate the price for a trip. Given a route and passenger count (and optional luggage count), returns the cheapest vehicle that fits the group, plus all fitting options. Use this to answer 'how much for N people from X to the airport?'.
| Name | Required | Description | Default |
|---|---|---|---|
| luggage | No | Number of large bags (optional). | |
| routeSlug | Yes | Route slug from list_routes. | |
| passengers | Yes | Number of passengers. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided; description explains return value (cheapest vehicle + all options) but omits details like error handling, dynamic pricing, or whether it's 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?
Two efficient sentences: first states purpose and output, second gives a typical user query. No fluff or repetition.
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?
Adequately covers what the tool does and returns for a simple 3-parameter no-output-schema tool. Missing minor details like prerequisite routeSlug validity, but sufficient for clear use.
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 parameters are fully documented; description merely restates them without adding new meaning beyond what the schema offers.
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?
Clearly states it estimates price for a trip given route and passenger count, returns cheapest vehicle and all options. Includes an example query, distinguishing from siblings like get_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?
Provides an explicit use case ('how much for N people from X to the airport?') but doesn't specify when not to use or compare to alternatives like get_pricing.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_booking_request_statusAInspect
Check whether a booking request (from create_booking_request) has been confirmed by the passenger yet. Returns 'pending', 'confirmed' (with the booking number), or 'expired'.
| Name | Required | Description | Default |
|---|---|---|---|
| requestId | Yes | The requestId returned by create_booking_request. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so the description carries full burden. It accurately describes a read-only status check with three possible outcomes, which is sufficiently transparent for this simple tool.
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, no wasted words, front-loaded with purpose. Ideal conciseness.
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 1-param tool with no output schema, the description covers purpose, return values, and context. Nothing 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?
Schema coverage is 100%, so baseline is 3. The description adds context referencing create_booking_request, but that is already in the schema. No new meaning beyond 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 explicitly states the tool checks booking request status, lists possible return values, and distinguishes from create_booking_request by mentioning the origin of the requestId.
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 clearly says this is for checking confirmation status after creating a request, implying usage context. It does not explicitly state when not to use it, but the context is well-defined.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_pricingAInspect
Get fixed per-vehicle prices for a route, or for all routes if no routeSlug is given. Prices are fixed (no surge, no metered fares), in EUR and RSD. Each vehicle tier lists max passengers and luggage.
| Name | Required | Description | Default |
|---|---|---|---|
| routeSlug | No | Optional route slug from list_routes (e.g. 'novi-sad-belgrade-airport'). Omit to get pricing for every route. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Discloses that prices are fixed (no surge, no metered fares), currencies (EUR and RSD), and that each vehicle tier includes max passengers and luggage. However, it does not mention authentication requirements, error behavior, or rate limits, and with no annotations the description carries full burden.
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 that front-load the main purpose and condition, followed by essential details. Every sentence adds value with 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?
Given no annotations and no output schema, the description provides sufficient context: tells what prices are for, their nature, currencies, and vehicle tier info. It references list_routes as the source for routeSlug. Lacks output format details but implied by the description of vehicle tiers.
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% and already explains the routeSlug parameter well. The description adds no new meaning about the parameter itself (it rephrases the optionality), though it adds context about the response. 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 verb 'Get' and the resource 'fixed per-vehicle prices'. It distinguishes two use cases: with a routeSlug for a specific route and without for all routes, which differentiates it from sibling tools like estimate_price that handle dynamic 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?
Provides clear guidance on when to include or omit the routeSlug parameter. Implicitly contrasts with variable pricing tools by stating prices are fixed, but does not explicitly name alternative tools for dynamic pricing scenarios.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_service_infoAInspect
Get business info: service area, accepted payment methods, supported languages, minimum booking lead time, contact details, and how to book (including the booking URL template).
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must disclose behavior. It describes the returned info but does not explicitly state read-only characteristics, auth needs, or side effects. The absence of contradictions keeps it at baseline.
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?
Single sentence that efficiently lists contents without redundancy. Every part is necessary and well-structured.
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 parameters or output schema, the description fully covers what the tool provides. No gaps are apparent for a simple info retrieval 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?
With zero parameters, schema coverage is 100%. The description adds value by listing the output fields, which is helpful beyond the schema. Baseline of 4 for 0 params 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 clearly states the tool retrieves business info and enumerates specific categories (service area, payment methods, etc.). It effectively distinguishes from sibling tools that handle bookings, pricing, and routes.
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 business information, which is distinct from sibling tools. However, it does not explicitly state when not to use or provide alternatives, though the context suffices.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_routesAInspect
List all active airport-transfer routes with their slug, endpoints, distance, travel time, available directions, and starting price. Use this first to discover what routes exist.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description bears full responsibility. It describes the output fields but does not mention behavior like whether it requires authentication, any rate limits, or if the result is static. For a simple list tool with no side effects, the disclosure is adequate but not comprehensive.
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-loaded with the key information and a usage hint. Every word adds value; no 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?
Given no output schema, the description covers the returned fields adequately. However, it lacks mention of potential error conditions (e.g., no routes found) or prerequisites (e.g., authentication). Still, for a simple parameterless tool, it provides sufficient 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?
With zero parameters, the baseline is 4. The description adds value by explicitly listing the output fields (slug, endpoints, distance, etc.), compensating for the lack of output schema and enriching the agent's understanding of what will be returned.
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 specifies the verb 'list' and resource 'active airport-transfer routes', enumerates the fields returned (slug, endpoints, distance, etc.), and distinguishes it from sibling tools like create_booking_request by positioning it as a discovery tool.
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 states 'Use this first to discover what routes exist', which provides clear context on when to invoke this tool before other operations. However, it does not explicitly mention when not to use it or alternative tools for specific filtering.
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!