Skip to main content
Glama

TrustedVillas Villa Rentals

Server Details

Search and book luxury villa rentals across Europe with real-time availability and pricing.

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.

MCP client
Glama
MCP server

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.

100% free. Your data is private.
Tool DescriptionsA

Average 4.3/5 across 4 of 4 tools scored.

Server CoherenceA
Disambiguation5/5

Each tool has a clearly distinct purpose: searching for villas, getting detailed information, checking availability, and obtaining a binding quote. No overlap or ambiguity.

Naming Consistency5/5

All tools follow a consistent verb_noun pattern using snake_case (e.g., check_availability, get_quote, get_villa_details, search_villas), making the naming predictable and clear.

Tool Count5/5

With 4 tools, the set is well-scoped for a villa rental server, covering all essential steps from search to booking without being overly numerous or sparse.

Completeness4/5

The tools cover the key user journey: search, details, availability, and pricing. Minor gaps exist (e.g., no tool for managing bookings directly), but the quote tool provides a booking link, so agents can complete the workflow.

Available Tools

4 tools
check_availabilityAInspect

Check real-time availability and nightly pricing for a specific villa over a date range. Returns whether the property is available and the average nightly rate. For a binding total price including all fees and taxes, use get_quote.

ParametersJSON Schema
NameRequiredDescriptionDefault
codeYesInterhome accommodation code.
checkInYesCheck-in date (YYYY-MM-DD).
checkOutYesCheck-out date (YYYY-MM-DD). Must be after checkIn.
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries full burden. It implies a read-only operation by stating 'Check availability' but does not explicitly confirm non-destructive behavior or disclose any authentication or rate limit details.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences with no wasted words: first covers what the tool does, second covers return values and when to use an alternative. Information is front-loaded and efficient.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

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 states what is returned (availability and average nightly rate). It provides enough context for an agent to decide when to use this tool versus siblings, though lacks details on error handling or response structure.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100% with each parameter already documented. The description adds no new meaning beyond referencing 'date range' which aligns with checkIn/checkOut, so it meets the baseline without adding extra value.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb ('Check') and resource ('real-time availability and nightly pricing for a specific villa') and clearly distinguishes from the sibling get_quote by noting the latter provides a binding total price.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explicitly states when to use the alternative tool get_quote for binding total price, but does not provide guidance on when to use get_villa_details or search_villas instead.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_quoteAInspect

Get a binding price quote for a villa stay including full breakdown of accommodation cost, cleaning fee, tourist tax, and security deposit. Always use this for final price — never estimate or calculate prices manually. Provides a direct booking link with dates pre-filled.

ParametersJSON Schema
NameRequiredDescriptionDefault
codeYesInterhome accommodation code.
guestsYesTotal number of guests.
checkInYesCheck-in date (YYYY-MM-DD).
checkOutYesCheck-out date (YYYY-MM-DD).
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Although no annotations are provided, the description discloses output details (breakdown, booking link) and implies a read operation. However, it does not explicitly state idempotency or side effects, leaving some behavioral traits unclear.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Three sentences, no redundancy. The most critical information (purpose, usage rule, output) is front-loaded. Every sentence adds value.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With four required parameters and no output schema, the description covers purpose, usage, and return value (breakdown + link). It misses potential error conditions or prerequisites, but is otherwise complete for a straightforward quote tool.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% with descriptions for all parameters. The description adds no additional meaning beyond the schema, as it focuses on tool behavior rather than parameter details. Baseline 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb 'get' and the resource 'binding price quote for a villa stay' with specific cost breakdown. It distinguishes from siblings by focusing on pricing, while siblings handle availability, details, or search.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly states 'Always use this for final price — never estimate or calculate prices manually,' providing clear when-to-use and when-not-to-use guidance. Siblings serve different purposes, so no further exclusion needed.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_villa_detailsAInspect

Get full details for a specific villa including description, all photos, amenities, house rules, and check-in/check-out times. Call this when the user wants more information about a property found via search_villas.

ParametersJSON Schema
NameRequiredDescriptionDefault
codeYesInterhome accommodation code from a search result, e.g. "IH-123456".
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Without annotations, the description carries full burden. It enumerates what the tool returns (description, photos, amenities, house rules, times), making the behavior transparent. There is no mention of side effects, and the action is clearly a 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.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two sentences: the first states the purpose and contents, the second gives usage context. It is front-loaded, concise, and contains no unnecessary information.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool has one required parameter, no output schema, and low complexity, the description fully covers what it does, when to use it, and what it returns, making it contextually complete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The single parameter 'code' is fully described in the schema with pattern and description. The description adds context by linking it to 'a search result' from search_villas, slightly enhancing semantic meaning beyond the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb 'Get' and resource 'full details for a specific villa', listing the included fields. It clearly distinguishes the tool from siblings like search_villas, which finds properties, and check_availability/get_quote, which serve different purposes.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explicitly states when to call this tool: 'when the user wants more information about a property found via search_villas.' This provides clear context and implies not to use for availability or quoting, guiding appropriate invocation.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

search_villasAInspect

Search self-catering villa rentals with real-time availability. Filter by destination, check-in/check-out dates, guests, bedrooms, and amenities (pool, pet-friendly, sea view, wifi, parking, air conditioning). Returns matching villas with nightly price and a link to book. Always pass checkIn, checkOut, and guests when the user has specified dates and party size.

ParametersJSON Schema
NameRequiredDescriptionDefault
areaNoRegion or area, e.g. "Costa del Sol", "Tuscany", "Algarve".
poolNoPrivate swimming pool required.
sortNoResult ordering.relevance
wifiNoWiFi required.
airConNoAir conditioning required.
cursorNoPagination cursor from a previous response.
guestsNoTotal number of guests including children.
checkInNoCheck-in date (YYYY-MM-DD). Required for availability filtering.
countryNoCountry name in English, e.g. "Spain", "France", "Italy".
parkingNoOn-site parking required.
seaViewNoSea or ocean view required.
bedroomsNoMinimum number of bedrooms required.
checkOutNoCheck-out date (YYYY-MM-DD). Required with checkIn.
locationNoTown or resort name, e.g. "Marbella", "Positano", "Lagos".
maxPriceNoMaximum nightly price in GBP.
minPriceNoMinimum nightly price in GBP.
pageSizeNo
petFriendlyNoPets accepted.
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description must cover behavioral disclosure. It mentions real-time availability but does not discuss safety (read-only vs destructive), rate limits, or what happens when required parameters are omitted. The usage guideline offers some behavioral context.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two concise sentences. The first sentence captures the core purpose and filter options, the second gives a critical usage instruction. No wasteful words.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With 18 parameters and no output schema, the description covers the main output and many filters, and provides a crucial usage rule. It does not explain pagination or sorting options, but the essentials are covered.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 94%, so baseline is 3. The description adds value by enumerating amenity filters and specifying that the tool returns nightly price and a booking link, and it provides a usage rule for key parameters. This goes beyond the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool searches for self-catering villa rentals in real-time, lists available filters, and specifies the output (matching villas with price and booking link). It distinguishes from sibling tools like check_availability and get_villa_details.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explicitly advises to pass checkIn, checkOut, and guests when dates and party size are known. However, it does not contrast this search tool with siblings like check_availability for specific use cases.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Discussions

No comments yet. Be the first to start the discussion!

Try in Browser

Your Connectors

Sign in to create a connector for this server.

Resources