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.2/5 across 4 of 4 tools scored.

Server CoherenceA
Disambiguation5/5

Each tool serves a distinct function: search, details, availability, and quoting. There is no overlap or ambiguity between them.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern with underscores (check_availability, get_quote, get_villa_details, search_villas). No mixing of conventions.

Tool Count5/5

4 tools are well-suited for a villa rental server, covering search, details, availability, and pricing without being too few or too many.

Completeness4/5

The toolset covers key operations: search, details, availability, and quotes. The only minor gap is a direct booking tool, but the provided booking link mitigates this.

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.
Behavior4/5

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

No annotations are provided, so the description carries the full burden. It honestly describes the tool as checking availability and pricing (a read operation). It does not mention any destructive side effects. However, it could elaborate on how 'real-time' is handled or edge cases like overlapping bookings.

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 only two sentences, front-loaded with the core purpose and followed by a clear alternative. Every word earns its place with no wasted content.

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 there is no output schema, the description sufficiently indicates the return values (availability and average nightly rate). It could be more detailed about the exact format or additional fields, but it is complete enough for a simple look-up tool with sibling context.

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%, so the description does not add significant meaning beyond the schema. It mentions 'specific villa' and 'date range' which align with the parameters but does not provide additional semantics or examples.

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 checks real-time availability and nightly pricing for a specific villa over a date range. It specifies the return values (availability and average nightly rate), and distinguishes from sibling get_quote by noting that get_quote 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 Guidelines5/5

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

The description explicitly outlines when to use this tool (for availability and nightly pricing) and what to use instead for a binding total price (get_quote). It also implies the tool is for a specific villa via the required 'code' parameter, providing clear context.

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).
Behavior4/5

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

No annotations provided, so description carries full burden. It discloses that quote is binding and includes full breakdown and booking link. No side effects or auth needs mentioned, but for a read-only price query this is sufficient.

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 sentence states purpose and output, second provides usage guidance. Front-loaded and efficient.

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?

Tool has 4 well-documented required params with no output schema. Description covers output contents (breakdown, booking link) and usage context. Complete for its purpose.

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 good descriptions for all 4 parameters. The description does not add new meaning to parameters beyond what's in schema; it focuses on output (breakdown, booking link). 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 tool provides a binding price quote with full breakdown, and explicitly distinguishes it from manual estimation by saying 'Always use this for final price — never estimate or calculate prices manually.'

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 use this tool for final pricing instead of manual calculation, providing clear when-to-use guidance. It lacks explicit exclusions or alternatives, but the sibling context (check_availability, etc.) implies when not to use.

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".
Behavior3/5

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

No annotations are provided, so the description carries the full burden. It discloses that the tool returns full details (including specific fields). However, it does not mention idempotency, authentication requirements, or any side effects. For a read-only tool, the disclosure is adequate but not exceptional.

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. The first sentence states the purpose and contents; 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.

Completeness4/5

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

No output schema exists, so the description must cover return values. It lists key items (description, photos, amenities, house rules, times). For a simple read tool, this is fairly complete, though it could mention response structure or pagination (unlikely needed).

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%, so the schema already documents the single parameter 'code' with pattern and description. The description does not add additional meaning beyond the schema, achieving baseline 3.

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 retrieves full details for a specific villa, listing specific content (description, photos, amenities, house rules, times). It distinguishes from sibling tools 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 Guidelines4/5

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

Explicitly tells when to use: 'when the user wants more information about a property found via search_villas.' This provides clear context for usage relative to the search flow, though it does not explicitly state when not to use.

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 provided; description mentions real-time availability and return fields but lacks details on pagination limits, rate limits, or data freshness.

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 covering purpose, filters, and critical usage guidance with no redundant information.

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

Completeness3/5

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

Given 18 parameters and no output schema, description omits details on pagination cursor and sort behavior, leaving some gaps for complete understanding.

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 94%, so description adds limited value beyond emphasizing checkIn, checkOut, and guests usage.

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 'Search' and resource 'self-catering villa rentals', and lists key filters, differentiating it 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?

Provides explicit guidance to pass checkIn, checkOut, and guests when relevant, but does not explicitly distinguish when to use this tool versus siblings.

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!

Related MCP Servers

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.

Resources