Skip to main content
Glama

HTTP 402 AI Tollbooth

list_products

Read-onlyIdempotent

Search the public catalog (maximum 50 products).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNo
queryNo
categoryNo

Schema Changelog

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

  1. First observed

TDQS

A3.9/5.0
Behavior4/5

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

Annotations already cover the safety profile with readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the bar is lower. The description adds genuinely useful behavior beyond those annotations: the result set is capped at 50 products and the search is scoped to the public catalog. It does not describe pagination or ordering, but for a simple read-only search this is a minor gap.

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?

A single sentence that front-loads the verb, names the resource, and folds the key constraint inline. Every word earns its place; nothing is redundant and the structure is optimal for agent scanning.

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 read-only tool with three optional scalar parameters and no output schema, the description covers the core facts an agent needs: purpose, scope (public catalog), and the 50-result cap. The main gaps are that the return format is unspecified (no output schema exists) and behavior with no arguments is implicit, but these are minor given the tool's low complexity.

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

Parameters2/5

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

With 0% schema description coverage, the description carries the burden of explaining the three parameters, but it only implicitly touches them: 'search' hints at query's role and 'maximum 50' maps to the limit cap. The category parameter is entirely undocumented in the description, and how the parameters combine (AND vs OR, precedence) is left to inference.

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 'search' and identifies the resource as the 'public catalog' of products, making the tool's function unmistakable. The 'public' qualifier and search framing clearly distinguish this from the sibling tools buy_product, preview_product, and list_payment_methods.

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

Usage Guidelines3/5

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

The description implies this is the discovery surface for the public catalog, but it never explicitly states when to prefer this over preview_product (e.g., for a single product's details) or buy_product. No exclusion or alternative-routing guidance is given; usage must be inferred from sibling names and 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.4/5.0
Disambiguation4/5

The tools are mostly distinct: list_products and preview_product both read product information but are differentiated by catalog search versus curated preview. buy_product could be mistaken for an actual purchase action, but the description clarifies it only returns purchase directions, and list_payment_methods is clearly separate.

Naming Consistency5/5

All tool names follow a consistent verb_noun snake_case pattern: buy_product, list_payment_methods, list_products, preview_product. The naming is uniform and predictable, even though buy_product's semantics are somewhat misleading.

Tool Count4/5

Four tools is a reasonable count for a narrow tollbooth/payment-oriented server. Each tool has a distinct surface area, though the set is minimal and leans heavily toward read-only operations.

Completeness2/5

The set covers catalog browsing and payment-method listing, but the only purchase-related tool explicitly never creates an invoice, checkout, or payment. This leaves the core transaction flow incomplete—there is no way to actually complete a purchase or trigger payment, which is likely a significant gap.