glim_amazon_search
ActiveTool of glim.sh
Pass exactly ONE of {query} or {category_slug}. Searches Amazon (com|co.uk|de|fr|es|it) and returns ranked hits with buybox price (gross + VAT-excluded net), ratings, review counts, and ASINs. Drill down with glim_amazon_get(ref). Set sort_by='most_reviewed' (with min_reviews to filter junk) for a trust-weighted re-rank within the current page. Compact text by default; pass format='json' for full structured data.
Parameters schema
{
"type": "object",
"$schema": "http://json-schema.org/draft-07/schema#",
"properties": {
"tld": {
"enum": [
"com",
"co.uk",
"de",
"fr",
"es",
"it"
],
"type": "string",
"default": "com",
"description": "Amazon marketplace: com | co.uk | de | fr | es | it"
},
"page": {
"type": "integer",
"default": 1,
"maximum": 20,
"minimum": 1,
"description": "Page number (1-20)"
},
"query": {
"type": "string",
"description": "Free-text keyword query (mutually exclusive with category_slug)"
},
"format": {
"enum": [
"text",
"json"
],
"type": "string",
"default": "text",
"description": "Output format. 'text' (default): compact human-readable view, fewer tokens. 'json': full structured data (offers[], images, variants)."
},
"sort_by": {
"enum": [
"most_recent",
"price_low_to_high",
"price_high_to_low",
"featured",
"average_review",
"bestsellers",
"most_reviewed"
],
"type": "string",
"description": "Server-side sort, except 'most_reviewed' which re-ranks the current page client-side by review count desc (rating tiebreaker). Pair 'most_reviewed' with min_reviews to skip thinly-reviewed items."
},
"min_reviews": {
"type": "integer",
"maximum": 9007199254740991,
"minimum": 0,
"description": "Drop hits with fewer than N reviews. Pair with sort_by='most_reviewed' for a trust-weighted result. Applied client-side to organic/paid/suggested."
},
"include_paid": {
"type": "boolean",
"default": false,
"description": "Include sponsored ad results (default: dropped)"
},
"category_slug": {
"type": "string",
"description": "Amazon bestsellers category slug, e.g. 'electronics' (.com), 'elektronik' (.de), 'electronique' (.fr). Invalid slugs return 'not_found' - retry with a correct slug."
},
"include_suggested": {
"type": "boolean",
"default": false,
"description": "Include 'people also searched for' suggestions (default: dropped)"
}
}
}Parent server
glim.sh
https://github.com/glim-sh/glim-mcp
1/7 registries