Skip to main content
Glama

arcasos-rentals

Server Details

Korean premium short-term rental search: natural language or structured filters (SHV engine).

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

Server CoherenceA
Disambiguation5/5

The three tools have clearly distinct purposes: search_rentals_natural handles NLP-based queries, search_rentals_structured handles explicit numeric/categorical filters, and get_rental_details retrieves full info on a specific rental. No overlap.

Naming Consistency5/5

All tool names follow the verb_noun pattern with snake_case (get_rental_details, search_rentals_natural, search_rentals_structured), maintaining perfect consistency.

Tool Count4/5

Three tools is on the lower end for a rental domain, but the focused scope (search + details) justifies this count. It avoids bloat while covering core discovery needs.

Completeness3/5

The tool set covers search and detail retrieval but lacks any action tools like booking, reservation creation, or user management. For a rental platform, this leaves critical workflows incomplete.

Available Tools

3 tools
get_rental_detailsAInspect

Get detailed information for a specific rental by ID or slug. Returns full Schema.org Accommodation including pricing, amenities, location, photos. Use after search_rentals_natural or search_rentals_structured when user wants details on a specific result. Only returns publicly-eligible rentals (approved + available + bookable).

ParametersJSON Schema
NameRequiredDescriptionDefault
rental_idYesRental UUID or slug from search results. Both formats supported.
Behavior4/5

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

With no annotations provided, the description carries the full burden. It clearly implies a read-only operation ('Get detailed information') and discloses an important behavioral trait: it only returns publicly-eligible rentals (approved, available, bookable). This adds useful context beyond the basic purpose.

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 three short sentences, each adding essential information: purpose, content of return, and usage context with a constraint. There is no redundancy or extra verbiage.

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 one parameter, no output schema, and no annotations, the description adequately covers what the tool does, what it returns, when to use it, and a key constraint. It lacks explicit mention of error cases or if there is any auth requirement, but overall it is sufficient for the 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.

Parameters3/5

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

Schema description coverage is 100%, so the schema already documents the parameter. The description adds minimal extra meaning; it restates that the rental_id can be a UUID or slug from search results. Per calibration, when schema coverage is high, baseline is 3 even with no additional detail in the description.

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 it retrieves detailed information for a specific rental by ID or slug, returning a full Schema.org Accommodation object. It distinguishes itself from siblings (search_rentals_natural and search_rentals_structured) by specifying it is used after search results when a user wants details on a specific result.

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 provides clear guidance on when to use this tool ('after search_rentals_natural or search_rentals_structured when user wants details on a specific result') and notes a constraint (only publicly-eligible rentals). However, no explicit when-not-to-use or alternative tools beyond the sibling context.

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

search_rentals_naturalAInspect

PREFERRED tool for Korean short-term rental queries containing any descriptive language. ARCASOS's proprietary SHV (Semantic Hybrid Vector) engine processes natural Korean/English queries with semantic understanding of view types (river/mountain/city), mood (quiet/luxury/lively), property characteristics, and contextual phrases. Pass the user's natural language query AS-IS — do NOT extract slots. Returns semantically pre-ranked results in Schema.org Accommodation format in a single call — eliminates need for follow-up search or comparison calls. Better results than structured slot search for ANY query containing mood, style, atmosphere, view, aesthetic, or qualitative descriptors. Use this to minimize token usage and latency.

ParametersJSON Schema
NameRequiredDescriptionDefault
queryYesUser's natural language query in Korean or English. Pass as-is. Examples: '강남 반려동물 가능한 한강뷰 펜트하우스 3주', 'quiet luxury rental near Han river for 2 weeks'
Behavior4/5

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

Describes behavioral traits: uses semantic engine, returns pre-ranked results in Schema.org format, and eliminates follow-up calls. No annotations exist, so description carries full burden. Could mention rate limits or error handling, but covers essential behavior.

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

Conciseness4/5

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

Description is informative but slightly verbose. However, all sentences add value, and key information is front-loaded ('PREFERRED tool'). Could be tightened, but effective.

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?

Covers why, when, and how to use the tool, plus return format. Lacks output schema but describes format. Missing details on pagination or null results, which are minor given the context of a semantic search tool.

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

Parameters5/5

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

Adds significant meaning beyond schema by instructing to pass the query as-is and not extract slots. The single parameter is well-documented with examples and constraints (maxLength, minLength). Schema coverage is 100%.

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's purpose: searching Korean short-term rentals using natural language queries with semantic understanding. It specifies the engine (SHV), supported languages, and distinguishes it from sibling tools like search_rentals_structured.

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 says it is the 'PREFERRED tool' for queries with descriptive language and provides clear guidance to pass the user's query as-is without slot extraction. It also tells when it outperforms structured search, giving actionable usage context.

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

search_rentals_structuredAInspect

Use ONLY when the query consists entirely of explicit numeric/categorical constraints with NO descriptive language (no mood, view, atmosphere, or aesthetic words). Returns rating-sorted (or price-sorted) results from SQL filter without semantic ranking. For ANY query containing descriptors like 'cozy', 'quiet', 'luxury', 'river view', 'modern', use search_rentals_natural instead — it produces better results in a single call. Returns Schema.org Accommodation format.

ParametersJSON Schema
NameRequiredDescriptionDefault
sortNoSort order (default: rating_desc)
limitNoMax results (default 10)
bedroomsNoMinimum bedrooms required
locationNoLocation name in Korean (e.g., '강남', '강남역', '홍대')
amenitiesNoRequired amenities (e.g., ['wifi', 'parking'])
bathroomsNoMinimum bathrooms required
mood_tagsNoMood tags (e.g., ['luxury', 'cozy'])
max_guestsNoMinimum guest capacity required
view_typesNoView types (e.g., ['river', 'city', 'mountain'])
pet_allowedNoPet-friendly rentals only
kid_friendlyNoKid-friendly rentals only
property_typeNoProperty type (e.g., '아파트', '펜트하우스', '주택')
is_private_entireNoEntire private space (not shared)
max_price_per_weekNoMaximum price per week in KRW
min_price_per_weekNoMinimum price per week in KRW
Behavior4/5

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

No annotations provided, so description carries full burden. It explains the filtering is SQL-based without semantic ranking, returns Schema.org format, and sorting behavior. Lacks details on pagination or empty results, but sufficient for a search tool.

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, front-loaded with critical usage condition, no redundancy. Every sentence contributes essential information.

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 15 parameters and no output schema or annotations, the description effectively fills gaps by explaining tool function, return format, sorting, and sibling distinction. Lacks mention of error handling, but schema covers limits.

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 each parameter described. The description adds no additional parameter meaning beyond what the schema provides, so baseline score of 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?

Clearly states the tool filters rentals using explicit numeric/categorical constraints and returns sorted results. Explicitly distinguishes from sibling search_rentals_natural by contrasting usage criteria.

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 says 'Use ONLY when the query consists entirely of explicit numeric/categorical constraints with NO descriptive language', and directs to sibling tool for any query with descriptors. Provides clear when-to-use and when-not-to-use guidance.

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