Skip to main content
Glama

Unwrangle Product

unwrangle_product
Read-onlyIdempotent

Product detail from a retailer (Amazon/Target/Best Buy/Home Depot/Walmart/…). Returns title, brand, price, rating, availability. Pass the product url (works for any retailer), or for Amazon pass id/asin. Example: unwrangle_product({ retailer: "amazon", url: "https://www.amazon.com/dp/B07ZPKN6YR", _apiKey: "your-key" })

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idNoProduct id (Amazon ASIN) — alternative to url. Amazon: pair with country_code.
urlNoProduct page URL (recommended — works across all retailers).
asinNoAlias for id (Amazon ASIN).
_apiKeyYesUnwrangle API key (get one at unwrangle.com — $10 / 10k credits).
retailerNoRetailer slug that selects the platform, e.g. "amazon", "walmart", "target", "bestbuy", "homedepot", "lowes", "wayfair", "costco", "samsclub", "chewy", "tesco", "currys". Defaults to "amazon".
country_codeNoOptional 2-letter country code (e.g. "us", "uk"). Defaults to "us" when using an id/asin.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A3.8/5.0
Behavior4/5

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

Annotations already declare readOnly, openWorld, idempotent, and non-destructive behavior. The description adds useful context beyond that: cross-retailer support, the Amazon-specific ASIN mode, and the concrete set of returned fields. There is no contradiction with 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?

Three concise sentences plus one illustrative example. The purpose, key constraints, and supported retailers are front-loaded, and every sentence earns its place without redundancy.

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?

Even without an output schema, the description names the returned fields and the example plus schema cover the valid call patterns. It does not discuss error cases, rate limits, or exact response types, but for a simple read-only product detail tool this is a minor gap.

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 coverage is 100%, so the schema already documents every parameter well. The description reinforces the url-vs-id relationship and provides an example, but it does not add meaningfully new semantics beyond what the input schema and its examples already convey.

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 that the tool retrieves product detail from named retailers and lists the returned fields (title, brand, price, rating, availability). It does not explicitly contrast itself with siblings like unwrangle_reviews or unwrangle_search, so it stops just short of full sibling differentiation.

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?

It provides concrete input-mode guidance: pass a URL for any retailer, or an Amazon id/asin for Amazon. However, it never explicitly says when to prefer unwrangle_product over unwrangle_search or unwrangle_reviews, leaving the comparative usage context implied rather than stated.

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.