Skip to main content
Glama

Eagles and Angels Limited AI Gateway

List products

list_products
Read-onlyIdempotent

List products in this store (title, price, sale price, availability, image, URL). Returns the catalog so an agent can browse. Page with offset. Use add_to_cart to build a cart.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoMax results (default 20, max 50)
offsetNoSkip this many to page through (use next_offset from a prior call)

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
totalNo
productsYes
next_offsetNo

TDQS

A3.8/5.0
Behavior3/5

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

Annotations already carry readOnly, idempotent, and non-destructive traits; the description adds pagination behavior with offset and the returned field list. It does not mention errors or rate limits, but the annotation coverage lowers the burden.

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?

Three short sentences with zero filler; the core purpose, returned content, and pagination guidance are all front-loaded. Every sentence earns its place.

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?

Output schema supplies return structure and annotations cover safety, while pagination guidance appears in both the description and schema. The only gap is explicit alternative selection, which is not required for a straightforward catalog-list tool.

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 covers both parameters at 100%, including defaults and next_offset semantics. The description adds the phrase 'page with offset' but does not provide additional meaning beyond what the schema already documents.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

States a specific verb ('List') and resource ('products in this store') and enumerates the returned fields (title, price, sale price, availability, image, URL). The catalog/browse framing separates it from more targeted tools like get_product or search_products, though it does not name them explicitly.

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?

Provides clear context: it returns the catalog for browsing and instructs to page with offset, explicitly routing cart-building to add_to_cart. It does not state when to prefer this over search_products or best_sellers, but the catalog-browsing purpose is enough for an agent.

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
Disambiguation3/5

Most tools are scoped to either products or articles, but there are overlapping pairs: check_inventory and get_product both return price and variant stock, and fetch and get_article both retrieve full-text content. search, search_products, and search_articles also share similar search intent, though their descriptions help clarify scope.

Naming Consistency3/5

The set mixes verb+noun tools like list_products, get_article, and search_products with bare verbs like fetch and search, and noun-phrase tools like best_sellers, popular_content, related_products, and store_info. The naming is readable and partially patterned, but not consistently structured.

Tool Count4/5

15 tools is at the upper end of the typical range, covering both a storefront and a publication plus sitewide search. The count is reasonable for the combined scope, though a few tools like check_inventory and get_product overlap enough that the set could be slightly tighter.

Completeness4/5

The gateway covers catalog browsing, product search, inventory, cart building, store policies, article search/retrieval, recent content, popular content, and general site search. Minor gaps include no paged listing of all articles beyond recent and no direct category-filtered product listing, but core workflows are well supported.

Resources