Skip to main content
Glama

product-intelligence

Search Products Tool

search_products
Read-onlyIdempotent

Search Ponito's product catalogue. Call this for any shopping query — finding products, comparing options, or checking who sells something in a given country. Returns GTIN-anchored products with their best offer (lowest price, integer minor units) and shop count.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
sortNo"relevance" (popularity-weighted, default) or "cheapest" (lowest price first).relevance
limitNoMax results, 1-25.
queryYesWhat the shopper is looking for, e.g. "quiet robot vacuum" or "Bosch dishwasher 60cm".
countryYesThe shopper's country (offers and prices are country-specific).
languageNoLanguage to search and label results in.en

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
productsYesMatching products, most relevant (or cheapest) first.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changed
    • changedInput schema / properties / country / enum
      Previous value: -[
      -  "CH",
      -  "DE",
      -  "FR",
      -  "GB"
      -]New value: +[
      +  "CH",
      +  "DE",
      +  "FR",
      +  "GB",
      +  "AT",
      +  "ES",
      +  "NL"
      +]
  2. Changed1 schema field changed
    • changedInput schema / properties / language / enum
      Previous value: -[
      -  "de",
      -  "fr",
      -  "en"
      -]New value: +[
      +  "de",
      +  "fr",
      +  "en",
      +  "it",
      +  "es",
      +  "pt",
      +  "nl"
      +]
  3. Changed1 schema field changed
    • changedInput schema / properties / language / enum
      Previous value: -[
      -  "en",
      -  "de",
      -  "fr"
      -]New value: +[
      +  "de",
      +  "fr",
      +  "en"
      +]
  4. Changed1 schema field changed
    • changedOutput schema / (root)
      Previous value: -nullNew value: +{
      +  "properties": {
      +    "products": {
      +      "description": "Matching products, most relevant (or cheapest) first.",
      +      "items": {
      +        "properties": {
      +          "best_offer": {
      +            "properties": {
      +              "currency": {
      +                "type": "string"
      +              },
      +              "price": {
      +                "description": "Lowest current price in minor units (cents/rappen).",
      +                "type": "integer"
      +              },
      +              "shops_count": {
      +                "description": "Number of shops currently offering the product.",
      +                "type": "integer"
      +              }
      +            },
      +            "required": [
      +              "price",
      +              "currency",
      +              "shops_count"
      +            ],
      +            "type": [
      +              "object",
      +              "null"
      +            ]
      +          },
      +          "brand": {
      +            "type": [
      +              "string",
      +              "null"
      +            ]
      +          },
      +          "gtins": {
      +            "description": "GTIN (EAN/UPC) barcodes.",
      +            "items": {
      +              "type": "string"
      +            },
      +            "type": "array"
      +          },
      +          "id": {
      +            "description": "Ponito product id.",
      +            "type": "string"
      +          },
      +          "name": {
      +            "type": [
      +              "string",
      +              "null"
      +            ]
      +          },
      +          "rating": {
      +            "description": "Average user rating, 0-5.",
      +            "type": [
      +              "number",
      +              "null"
      +            ]
      +          },
      +          "url": {
      +            "description": "Ponito product page listing all offers in the country.",
      +            "type": "string"
      +          }
      +        },
      +        "required": [
      +          "id",
      +          "name",
      +          "brand",
      +          "gtins",
      +          "rating",
      +          "best_offer",
      +          "url"
      +        ],
      +        "type": "object"
      +      },
      +      "type": "array"
      +    }
      +  },
      +  "required": [
      +    "products"
      +  ],
      +  "type": "object"
      +}
  5. First observed

TDQS

A4/5.0
Behavior4/5

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

The description discloses that results are GTIN-anchored, include the best offer (lowest price in integer minor units), and a shop count—details not in the annotations. The tool is annotated as read-only and idempotent, and the description's search behavior is consistent with that, adding useful context beyond the annotations.

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 three sentences, each serving a purpose: what it is, when to use it, and what it returns. No redundant filler; front-loaded with the tool's 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 search tool with annotations and a full output schema, the description covers purpose, usage context, and key return characteristics. It does not mention pagination or edge cases, but the schema covers limit and the output schema would handle return structure, so the description 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?

The input schema already provides full descriptions for all five parameters (100% coverage), including enums and defaults. The description adds no additional parameter-level detail, but it does clarify the meaning of 'best offer' in the return value; since coverage is high, 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 clearly states the tool searches Ponito's product catalogue and returns GTIN-anchored products with best offers and shop count. It gives situational examples ('finding products, comparing options...'), differentiating it from a generic search, but does not explicitly distinguish from sibling tools like get_product or get_price_history.

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?

The description explicitly instructs 'Call this for any shopping query' and lists concrete use cases, providing clear context for when to invoke it. It does not mention when not to use it or point to alternatives, so it lacks exclusions.

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.

Resources