Skip to main content
Glama

get_listing

Get one listing (incl. seller DID + KYA status) as JSON-LD.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
listing_idYes

TDQS

C2.9/5.0
Behavior2/5

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

With no annotations, the description must convey behavioral traits on its own, but it only mentions the return format and content. It does not disclose error behavior (e.g., what happens if listing_id is not found), authentication requirements, rate limits, or whether the operation is read-only.

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 a single, front-loaded sentence that efficiently conveys the core action and output. Every word serves a purpose, with no redundant or extraneous information.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Although the tool is simple (one parameter, no output schema), the description is too thin. It omits critical details like error handling, the meaning of 'KYA status', and how the response JSON-LD is structured. Without annotations or an output schema, the description does not adequately prepare the agent to use the tool correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters1/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema only defines listing_id as a string with no description. The tool description adds no information about the expected format (e.g., UUID, integer) or how to obtain it. With 0% schema coverage, the description entirely fails to compensate, leaving the parameter ambiguous.

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's function with a specific verb ('Get') and resource ('one listing'), and adds distinguishing details ('incl. seller DID + KYA status' and 'as JSON-LD'). This differentiates it from search_listings and other siblings.

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

Usage Guidelines2/5

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

No guidance is provided on when to use this tool versus alternatives like search_listings. The necessity of having a listing_id from a prior search is implied but never stated, leaving the agent to infer the intended usage context.

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

B3.2/5.0
Disambiguation4/5

Most tools target distinct resources, but fx_rates and kzt_rates both provide exchange rate data and could be easily confused. The remaining tools are clearly separated by purpose.

Naming Consistency3/5

Tool names are consistently snake_case, but follow two patterns: verb_noun (get_listing, search_listings) and noun_noun (fx_rates, kzt_rates, lei_lookup), with 'weather' being a bare noun. This mix is readable but lacks a unified convention.

Tool Count4/5

With 10 tools, the count is within the ideal range. However, several tools (weather, exchange rates, parcel tracking) seem tangential to a 'marketplace' server, making the scope slightly broad.

Completeness3/5

The marketplace core is covered with search_listings/get_listing and verify_agent, but there are gaps such as no direct agent search or way to create/update listings. The Kazakhstan-specific utilities are each complete in isolation, but the overall surface lacks a cohesive lifecycle.

Resources