Skip to main content
Glama

get_sold_history

Read-only

The individual archived sales behind an item: title, final price, sale month and state, plus the range they produce. Use when you want the evidence rather than just the number. Query-anchored — describe an item; there is no way to list the archive.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
qYesItem description, e.g. '2015 Ford F-150'
limitNoHow many sales to return. Capped by plan.
stateNoOptional 2-letter state/region code.
countryNoUS
categoryNo

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already provide readOnlyHint=true and openWorldHint=true, but the description adds behavioral nuance: it is query-anchored and cannot list the archive. It also describes the return fields (title, price, sale month/state, range), which adds context beyond the annotations without contradicting them.

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 sentence states what the tool does and the output fields; the second provides usage guidance and a constraint. Every word earns its place, and it is front-loaded with the core purpose.

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 tool with 5 parameters and no output schema, the description covers the key behavioral aspects: what it returns, when to use it, and its query-anchored limitation. It lacks elaboration on the 'range' calculation or pagination, but the core context is sufficiently complete.

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 moderate (60%), with descriptions for q, limit, state, and country, but category has none. The description only reaffirms that q is an item description ('describe an item') and does not add meaning for the other parameters. This is baseline 3 because the schema already does most of the work.

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 returns individual archived sales with specific fields (title, final price, sale month/state) and the range they produce. It distinguishes from siblings by positioning it as 'the evidence rather than just the number', which differentiates it from tools like get_price_trend or get_sold_comps.

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 when you want the evidence rather than just the number' and notes that the tool is 'Query-anchored — describe an item; there is no way to list the archive.' This gives clear usage context and a limitation, but does not name specific alternative tools, so it falls 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

A3.9/5.0
Disambiguation4/5

Most tools have distinct purposes: search_listings and get_listing differ by lookup method, and get_sold_comps, get_sold_history, and get_price_trend are clearly separated by whether they provide aggregate percentiles, individual sales, or monthly trends. The only minor ambiguity is between get_sold_comps and get_price_trend, both derived from the same comps, but their descriptions make the difference in output format clear.

Naming Consistency5/5

All tool names follow the consistent verb_noun pattern using lowercase snake_case: get_* for data retrieval and search_listings for searching. There are no mixed conventions or style inconsistencies, making the naming highly predictable.

Tool Count5/5

With 8 tools, the server is well-scoped for its purpose of querying government auction listings and pricing data. Each tool covers a distinct functional need without redundancy, and the count is squarely in the ideal range for a domain-specific API.

Completeness4/5

The tool surface covers the core read-only workflows: searching and retrieving listings, getting sold-price comps, viewing historical sales, examining price trends, estimating flip value, and checking data coverage. A minor gap is the lack of explicit category or market listing endpoints, but agents can work around this via search_listings and get_comp_coverage.