Skip to main content
Glama

Save property to favorites

save_property_to_list

Use this when an authenticated user asks to save a property to a favorite list. If no list is supplied, use the idempotent default list named Favoritos.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
noteNoOptional private note stored with the saved property.
listIdNoIdentifier of a favorite list owned by the authenticated user.
listNameNoName for a new favorite list; defaults to Favoritos.Favoritos
propertyIdYesA listingKey returned by search_properties.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
listYes
savedYes
propertyIdYes

TDQS

A4.4/5.0
Behavior4/5

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

Annotations already indicate readOnlyHint=false and destructiveHint=false, so the write operation is implied. The description adds non-obvious behavioral context: the default list is idempotent and named 'Favoritos', which is valuable beyond the raw schema.

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 short sentences, no filler, and the trigger condition is front-loaded. Every phrase earns its place and the default-list rule is clearly stated.

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?

For a simple 4-parameter write action with an output schema and annotations, the description covers the key decision rule (default list fallback) and user context. It could elaborate on listId vs listName precedence, but the schema already documents these fields.

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 description coverage is 100%, so the baseline is 3. The description adds meaning by explaining that when listId/listName are not supplied, the idempotent 'Favoritos' list is used, which clarifies the optional list parameters beyond the schema defaults.

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 'save' applied to a property and the target 'favorite list', which directly distinguishes it from siblings like remove_property_from_list and get_property_list. It also mentions the default list behavior, making the tool's 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 Guidelines4/5

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

It explicitly says 'Use this when an authenticated user asks to save a property to a favorite list' and provides the fallback rule for when no list is supplied. It does not explicitly name alternatives such as remove_property_from_list for removals, so it stops short of a 5.

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

A4/5.0
Disambiguation4/5

Most tools have a distinct resource-action pair, making selection generally clear. The main ambiguity is between get_property_list and list_property_lists, both of which involve favorite lists and could be confused by an agent despite different singular/plural meanings.

Naming Consistency4/5

The majority of tools follow a snake_case action_noun pattern like search_properties, save_property_to_list, and rename_property_list. The exceptions are my_listings, which uses a possessive noun with no verb, plus get_property_contact and restore_property_results, which slightly break the otherwise consistent pattern.

Tool Count5/5

Thirteen tools is a well-scoped set for a property search, listing publication, and favorite-list management server. Each tool supports a concrete workflow or user intent, with no obvious duplicated or filler tools.

Completeness3/5

The favorite-list workflows are reasonably complete, but there are notable lifecycle gaps: property listings can be published and searched but not updated, delisted, or deleted, and there is no explicit create-list operation for naming custom lists beyond the default behavior. This creates awkward workarounds for some common user requests.