get_listing
Get details for a single Fursat home by its URL slug. Returns the canonical detail URL plus a short summary.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| slug | Yes | URL slug of the listing (e.g., 'pudung-farm'). |
Get details for a single Fursat home by its URL slug. Returns the canonical detail URL plus a short summary.
| Name | Required | Description | Default |
|---|---|---|---|
| slug | Yes | URL slug of the listing (e.g., 'pudung-farm'). |
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 return content (canonical URL plus summary) but does not explicitly state that the operation is read-only or non-destructive, nor any behavioral traits beyond the return.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single well-structured sentence, front-loaded with the action and resource, and contains no superfluous information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the simplicity (1 parameter, no output schema, no annotations), the description adequately covers purpose and return value. It could explicitly state that the operation is read-only, but it is still fairly complete for a straightforward get tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% with a description for 'slug' (URL slug), but the description adds a concrete example ('pudung-farm'), which adds value beyond the schema alone.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description specifies the verb 'Get' and the resource 'details for a single Fursat home by its URL slug', which is distinct from sibling tools like 'search_listings' (multiple results) and 'start_inquiry' (different action).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies use when you have a URL slug and need details for a specific listing; siblings handle searching or starting inquiries, but no explicit when-not-to-use or alternatives are stated.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Add one secure layer between your agents and this server.
Each tool has a clear, distinct purpose: search, detail retrieval, and inquiry initiation. There is no overlap or ambiguity between them.
All tool names follow a consistent verb_noun pattern in snake_case (get_listing, search_listings, start_inquiry), making them predictable and easy to understand.
Three tools are well-suited for a niche vacation rental service covering search, details, and booking initiation. The count is neither too few nor excessive.
The tool set covers the core user journey (search, view, inquire). A minor gap is the lack of a 'list all listings' tool, but search serves that purpose adequately. No update/delete needed for a read-only catalog.