Skip to main content
Glama

List Products

meta_list_products
Read-onlyIdempotent

Retrieve product listings from a Meta catalog with filtering and pagination to manage inventory and availability.

Instructions

Lists products in a product catalog.

Args:

  • catalog_id (string): The catalog ID

  • limit (number): Max results (1–100, default 25)

  • after (string, optional): Pagination cursor

  • filter (object, optional): Filter criteria (e.g., { availability: "in stock" })

Returns product IDs, names, prices, availability, and more.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
catalog_idYesProduct catalog ID
limitNoMax results (default 25)
afterNoPagination cursor from previous response
filterNoFilter criteria (e.g., { availability: "in stock" })
response_formatNoOutput format: 'markdown' for human-readable or 'json' for machine-readablemarkdown

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv2.0.2

TDQS

A3.7/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint=false. The description adds value by stating the returned fields (product IDs, names, prices, availability) and exposing pagination/filtering behavior, which are not visible in annotations. No contradiction with annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is compact and front-loaded, with an Args bullet list and a Returns sentence. It is slightly redundant with the schema's parameter descriptions, but not bloated.

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 list operation with strong annotations and high schema coverage, this is largely complete: it states required catalog_id, optional limit/after/filter, and return fields. Minor gaps are the vague 'and more' return description and no explanation of filter operator semantics, but these are not blocking.

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 description coverage is 100%, so params are already documented. The description mainly restates catalog_id, limit, after, and filter with the same meanings; it adds no new parameter details and omits response_format, though the schema covers it. Baseline 3 is appropriate.

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?

The description uses a specific verb ('Lists') and resource ('products in a product catalog'), and the required catalog_id clarifies scope. It is clear enough to separate from siblings like meta_get_product, meta_list_product_catalogs, and meta_list_product_sets, though it does not explicitly name those alternatives.

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 tool is implied to be used when you need to enumerate products within a given catalog, supported by catalog_id, pagination, and filter arguments. There is no explicit statement of when to use an alternative (e.g., meta_get_product for a single product) or exclusions.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Deploy Server

Other Tools