Skip to main content
Glama

list_recent

Read-only

Return the N most recently updated active listings. Useful for periodic agent crawls.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNo
sinceNoOnly return listings updated after this ISO-8601 timestamp.

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

A4.4/5.0
Behavior4/5

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

Beyond the readOnlyHint annotation, the description adds behavioral context by specifying that only 'active' listings are returned and that the ordering is by 'most recently updated'. This informs the agent of implicit filtering and sorting not visible in the schema. It also implies a lightweight read operation suitable for repeated crawling, which is useful behavioral transparency.

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: the first states the core function with a clear verb and resource, the second provides a usage context. There is zero redundant wording, and the most important information is front-loaded. Every word earns its place, making it an efficient and well-structured description.

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 list tool with two optional parameters and no output schema, the description is adequately complete. It explains the tool's purpose, the active filter, recency ordering, and typical usage. While it does not specify the return format, the absence of an output schema lowers the burden, and the description covers the essential decision-making information 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?

The schema covers the 'since' parameter with a description, but 'limit' lacks a semantic description. The tool description clarifies 'N' as the limit parameter, effectively adding meaning to it. With 50% schema coverage, the description compensates partly by tying 'N' to the limit, while also hinting that 'since' relates to 'recently updated'. This adds value beyond the raw schema.

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 uses the specific verb 'Return' and identifies the resource as 'N most recently updated active listings', which clearly distinguishes it from siblings like get_listing (specific listing), search_listings (filtered search), and list_agents (agents). The temporal ordering and 'active' filter are explicitly stated, leaving no ambiguity about what the tool does.

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 a clear use case: 'Useful for periodic agent crawls', which tells the agent when to choose this tool. It does not explicitly exclude alternatives or list when-not-to-use scenarios, but the context is strong enough to guide selection. The phrase 'periodic agent crawls' implies a polling or regular-check scenario, which is adequate guidance.

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.8/5.0
Disambiguation3/5

There is clear overlap between list_recent and search_listings, as search_listings with no filters returns the same recent listings as list_recent. Other tools are distinct, but this redundancy creates ambiguity for an agent choosing between them.

Naming Consistency4/5

The naming pattern is mostly consistent with verb-first commands: get_listing, list_agents, list_recent, search_listings, submit_inquiry. The minor deviation is list_recent, which omits the object (listings) but remains understandable.

Tool Count5/5

Five tools is well-scoped for a niche service focused on property listings and agent discovery. Each tool except the redundant pair earns its place, and the count is neither too thin nor too heavy.

Completeness4/5

The set covers the core workflows: discovering and viewing listings, finding agents, and submitting inquiries. A minor gap is the lack of a get_agent_detail tool, but agents can likely work around it, and there are no dead ends in the primary flow.

Resources