Skip to main content
Glama

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

Server CoherenceA
Disambiguation5/5

Each tool has a distinct purpose: get_rental_details for specifics, search_rentals_natural for semantic queries, and search_rentals_structured for explicit filters. Descriptions clearly delineate usage, so an agent will not confuse them.

Naming Consistency4/5

All tool names use snake_case and a verb_noun pattern, but there is a minor inconsistency: 'get_rental_details' uses singular 'rental' while the search tools use plural 'rentals'. The structure is otherwise predictable.

Tool Count4/5

Three tools is a reasonable number for a server focused on searching and retrieving rental details. It covers the core actions without being overly sparse or excessive, though it is slightly on the minimal side.

Completeness4/5

The tool surface covers searching (via two modes) and retrieving details, which aligns with the server's stated purpose. Missing functionality like listing or managing rentals is beyond scope, so no critical gaps exist.

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). Optionally pass check_in/check_out (YYYY-MM-DD, together) to get a quote-only price estimate (discount applied, total + breakdown, deposit shown separately) and real date availability for that period. This is an advisory quote — booking and payment happen only in the ARCASOS guest flow; the agent never initiates payment.

ParametersJSON Schema
NameRequiredDescriptionDefault
check_inNoOptional move-in date (YYYY-MM-DD). Must be provided together with check_out. Enables period quote + date availability. Future dates only.
check_outNoOptional move-out date (YYYY-MM-DD). Must be provided together with check_in, and be after check_in. The check_out day is not occupied (next check-in allowed).
rental_idYesRental UUID or slug from search results. Both formats supported.
Behavior5/5

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

Discloses return content (full Schema.org Accommodation), eligibility filter, quote-only behavior, deposit/breakdown details, and clarifies the agent never initiates payment. No annotations provided, so description carries the full burden and does so thoroughly.

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 detailed and every sentence contributes useful information. Front-loaded with core purpose. Slightly verbose but appropriate given the tool's optional quote behavior and safety note.

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?

No output schema exists, so description explains return value (full Schema.org Accommodation) and optional quote behavior comprehensively. Also covers eligibility and payment safety, making the context complete for an agent.

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 covers parameter format/requirements (100% coverage). Description adds behavioral nuance: quote-only estimate, discount applied, total + breakdown, deposit shown separately, and that dates must be together. This goes beyond the schema, though rental_id is not significantly enhanced.

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?

Clear verb+resource+method: 'Get detailed information for a specific rental by ID or slug.' Distinguishes from siblings by specifying it's for details on a specific result after 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 when to use: 'Use after search_rentals_natural or search_rentals_structured when user wants details on a specific result.' Also outlines eligibility constraints (approved + available + bookable).

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?

With no annotations, the description carries the full burden and does it well: it explains the semantic engine, that it returns pre-ranked results in Schema.org Accommodation format in a single call, and that it avoids follow-up calls. It omits any mention of rate limits or result caps, but for a read-only search tool this is a minor gap.

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 six sentences long, but every sentence earns its place: it states preference, explains the engine, gives usage instructions, and clarifies outcomes. It is front-loaded with the key purpose and avoids redundancy with the schema.

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 adequately explains the return format and the single-call behavior. It could mention response size or how to access full details, but the presence of a sibling detail tool and the search-focused purpose make this sufficiently 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?

Schema coverage is 100%, but the description adds meaningful guidance beyond the schema by emphasizing 'pass AS-IS' and 'do NOT extract slots', which is critical for correct invocation. It also explains the semantic dimensions the query is interpreted by, adding value over the schema's basic type 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 explicitly identifies the tool as a search tool for Korean short-term rentals using natural language, and specifies the proprietary SHV engine. It clearly distinguishes itself from the structured search sibling by being the preferred choice for descriptive queries.

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 gives explicit when-to-use guidance: any query containing mood, style, atmosphere, view, aesthetic, or qualitative descriptors. It also names the alternative (structured slot search) and recommends this tool to minimize latency, while instructing users to pass the query as-is and not extract slots.

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?

Even though there are no annotations, the description discloses key behavior: results are rating/price-sorted, come from a SQL filter without semantic ranking, and are returned in Schema.org Accommodation format. It doesn't delve into side effects or security, but for a read-only search tool this is adequate.

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 concise, front-loaded with the usage gate, and every sentence adds value. It covers when to use, what to expect, and the alternative without redundancy.

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?

For a tool with 15 parameters, the description manages to be complete: it explains the decision boundary (structured vs. natural), the sorting behavior, the return format, and the alternative. Since there is no output schema, the mention of Schema.org Accommodation covers the return value expectation.

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 all 15 parameters. The description adds a high-level note about sorting and no semantic ranking, but doesn't provide parameter-specific details beyond what's already in the schema. 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 searches rentals in a structured way, with specific verb+resource. It explicitly distinguishes itself from the sibling tool search_rentals_natural by framing the use case (explicit numeric/categorical constraints vs. descriptive language).

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?

Gives an explicit conditional ('Use ONLY when...') and a direct exclusion for any query containing descriptors, naming the alternative tool to use instead. This is the gold standard for usage 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!

Related MCP Servers

  • F
    license
    A
    quality
    C
    maintenance
    Enables searching and comparing Airbnb (Korea) and Yanolja accommodation prices, with tools for price distribution, historical trends, and snapshot management, storing collected data in SQLite.
    4
  • A
    license
    A
    quality
    C
    maintenance
    Enables searching Korean apartment listings, market prices, and recent transactions via Naver Real Estate through natural language.
    6
    MIT
  • A
    license
    -
    quality
    A
    maintenance
    Enables natural language access to 11 Korean building data tools including building registers, permits, comprehensive profiles with zoning, floor composition, district statistics, old building analysis, price history, demolitions, and permit pipeline.
    60
    MIT

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.

Resources