Skip to main content
Glama

get_listing_detail

Get full details for a specific property by ID. Returns amenities, pricing breakdown, contact info, images.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
localeNo
listing_idYesProperty ID from search results

TDQS

A3.8/5.0
Behavior3/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 discloses the type of data returned (amenities, pricing breakdown, contact info, images), which is useful. However, it does not mention potential error behavior, authentication requirements, or the read-only nature explicitly, leaving some transparency gaps.

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, front-loaded with the primary purpose, and contains no filler or redundant information. Every word earns its place.

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 the tool's simplicity (2 params, no output schema), the description covers the essential return value details. It does not explain locale usage or error handling, but for a straightforward detail-fetching tool, it is sufficiently complete. Lacking annotations, it could be more thorough, but it meets the needs of most use cases.

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 50% (only listing_id has a description). The tool description adds 'by ID', reinforcing the meaning of listing_id, but it does not explain the 'locale' parameter at all. The description provides some additional context beyond the schema but does not fully compensate for the undocumented parameter.

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 a specific action ('Get full details') and a specific resource ('a specific property by ID'). It distinguishes itself from sibling tools like 'get_popular_listings' and 'get_similar_listings' by emphasizing the ID-based lookup, making its purpose unambiguous.

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

Usage Guidelines3/5

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

The description implies usage: use this when you have a specific property ID and need full details. However, it provides no explicit guidance on when to use this tool over alternatives like 'get_similar_listings' or 'search_listings', nor does it mention any exclusions or prerequisites beyond the ID.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A3.9/5.0
Disambiguation5/5

Each tool serves a clearly distinct function: searching listings, retrieving property details, finding similar/popular listings, checking availability, assessing rental chances, joining the tenant pool, and accessing FAQs/guides. No two tools overlap in purpose, and the workflow between check_rental_chances and join_tenant_pool is explicitly documented.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern in lowercase snake_case. Most retrieval operations use the 'get_' prefix (get_faqs, get_guide, get_listing_detail), while search_guides and search_listings use 'search_', and the two non-retrieval operations use 'check_' and 'join_'. This consistency makes the API predictable and easy to navigate.

Tool Count5/5

With 10 tools, the server falls squarely in the well-scoped range (3-15). The tools cover discovery (search, popular, similar, detail), specialized assessment (rental chances), booking availability, tenant pool registration, and content retrieval (FAQs, guides) without unnecessary duplication or bloat.

Completeness4/5

The tool set comprehensively covers the tenant-facing workflow: searching properties, viewing details, checking availability, assessing rental chances, and optionally joining the tenant pool. Minor gaps exist in property management operations (e.g., no create/update/delete for listings) but these are out of scope for the platform's apparent consumer focus.

Resources