Skip to main content
Glama

padel.how Racket Reviews

get_offers

Read-onlyIdempotent

List published retailer offers per racket; prices carry observed_at and are not live.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
slugNo
limitNo
offsetNo
retailerNo
snapshot_versionNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
toolYes
resultYes
datasetYes
warningsYes
citationsYes
schema_versionYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed9 schema fields changed
    • addedInput schema / properties / limit / maximum
      Added value: +25
    • addedInput schema / properties / limit / minimum
      Added value: +1
    • addedInput schema / properties / offset / maximum
      Added value: +9007199254740991
    • addedInput schema / properties / offset / minimum
      Added value: +0
    • changedInput schema / properties / slug / anyOf
      Previous value: -[
      -  {
      -    "type": "string"
      -  },
      -  {
      -    "type": "null"
      -  }
      -]New value: +[
      +  {
      +    "pattern": "^[a-z0-9]+(?:-[a-z0-9]+)*$",
      +    "type": "string"
      +  },
      +  {
      +    "type": "null"
      +  }
      +]
    • addedInput schema / properties / snapshot_version
      Added value: +{
      +  "anyOf": [
      +    {
      +      "type": "string"
      +    },
      +    {
      +      "type": "null"
      +    }
      +  ],
      +  "default": null,
      +  "title": "Snapshot Version"
      +}
    • removedOutput schema / $defs / OfferPrice / properties / amount / anyOf
      Removed value: -[
      -  {
      -    "type": "integer"
      -  },
      -  {
      -    "type": "number"
      -  }
      -]
    • addedOutput schema / $defs / OfferPrice / properties / amount / exclusiveMinimum
      Added value: +0
    • addedOutput schema / $defs / OfferPrice / properties / amount / type
      Added value: +"number"
  2. Changed2 schema fields changed
    • changedInput schema / properties / retailer / anyOf
      Previous value: -[
      -  {
      -    "enum": [
      -      "Amazon",
      -      "Padel Market",
      -      "PadelDogs",
      -      "Tennis Point",
      -      "Racketshop.com"
      -    ],
      -    "type": "string"
      -  },
      -  {
      -    "type": "null"
      -  }
      -]New value: +[
      +  {
      +    "enum": [
      +      "Amazon",
      +      "Padel Market",
      +      "PadelDogs",
      +      "Tennis Point",
      +      "Racketshop.com",
      +      "SPORTLET"
      +    ],
      +    "type": "string"
      +  },
      +  {
      +    "type": "null"
      +  }
      +]
    • changedOutput schema / $defs / AffiliateOffer / properties / retailer / enum
      Previous value: -[
      -  "Amazon",
      -  "Padel Market",
      -  "PadelDogs",
      -  "Tennis Point",
      -  "Racketshop.com"
      -]New value: +[
      +  "Amazon",
      +  "Padel Market",
      +  "PadelDogs",
      +  "Tennis Point",
      +  "Racketshop.com",
      +  "SPORTLET"
      +]
  3. First observed

TDQS

A3.9/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is covered. The description adds genuinely useful behavioral context beyond the annotations: offers are 'published', prices are snapshotted with observed_at, and they are 'not live.' This prevents the agent from assuming real-time pricing.

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?

One sentence with no filler. The core purpose is front-loaded, and the important caveat about non-live prices is included without bloating the description.

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 read-only, idempotent listing tool with an output schema present, the description covers the essential decision points: what entities are returned, the filtering concept, and the pricing freshness caveat. It does not exhaustively explain every parameter, but the schema supplies constraints and enums, so nothing critical is missing for an agent to invoke it correctly.

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?

Schema description coverage is 0%, so the description should compensate for the five undocumented parameters. It only partially does: 'per racket' hints at slug usage and 'retailer offers' hints at the retailer filter, but it does not explain snapshot_version, limit/offset semantics, or the meaning of null values. The schema's titles and defaults carry most of the burden.

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?

States a specific verb ('List') and a specific resource ('published retailer offers per racket'), and adds a distinctive constraint ('prices carry observed_at and are not live'). This clearly separates it from siblings like get_racket, search_rackets, and compare_rackets, which serve overlapping but different purposes.

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 makes the intended use clear: use this tool when you need retailer offers or pricing for a racket. However, it does not explicitly mention when not to use it or point to alternatives such as get_racket or search_rackets, so the usage guidance remains implied rather than explicit.

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