# BuyWhere Product Catalog (remote · mcp.buywhere.ai)

Search 1.5M+ products across 20+ platforms. Compare prices, find deals, browse categories.

- Trust score: 72/100 (medium)
- Change this week: +7
- Registry status: deprecated
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

> **Deprecated**: this server is marked deprecated in the MCP registry.

## Components

- remote · `mcp.buywhere.ai`: 72/100 (this document), [markdown](https://verifymcp.io/servers/ai-buywhere-catalog-api/mcp.md), [page](https://verifymcp.io/servers/ai-buywhere-catalog-api/mcp)

## Channel facts

- Endpoint: `https://mcp.buywhere.ai/mcp`
- Transports: `streamable-http`
- Auth: `required`
- Version: `1.0.0`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically against the live server, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-08-03.

- **Endpoint Security**: 83/100
  - The endpoint's TLS certificate is valid, in date, and uses a strong key.
  - Authorisation is enforced on tool calls, but the challenge carries no valid RFC 9728 metadata, so a client cannot discover where to get a token.
  - HTTPS is enforced; there's no plaintext access path.
  - HSTS check failed: the Strict-Transport-Security header is absent.
  - DNSSEC check failed: this domain isn't protected by DNSSEC.
- **Transport & Reachability**: 100/100
  - Verified streamable-http transport via a live MCP handshake.
- **Schema Quality & AI Usability**: 68/100
  - AI-judged instruction clarity (good).
  - Context-footprint check failed: tool/resource definitions use about 1075 tokens (~134/item across 8 items; 8 tools + 0 resources), over budget; trim descriptions and params.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 27/100
  - Stability observed for 8 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 100/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 100% of tool parameters carry a description.
- **Capabilities**: 20/100
  - Spec-recency check failed: implements MCP spec 2024-11-05; the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add --transport http ai-buywhere-catalog-api https://mcp.buywhere.ai/mcp
```

### Codex

```toml
[mcp_servers.ai-buywhere-catalog-api]
url = "https://mcp.buywhere.ai/mcp"
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "ai-buywhere-catalog-api": {
      "type": "remote",
      "url": "https://mcp.buywhere.ai/mcp",
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add ai-buywhere-catalog-api --url https://mcp.buywhere.ai/mcp --transport streamable-http
```

### Hermes

```yaml
mcp_servers:
  ai-buywhere-catalog-api:
    url: "https://mcp.buywhere.ai/mcp"
```

### Other

```json
{
  "mcpServers": {
    "ai-buywhere-catalog-api": {
      "type": "http",
      "url": "https://mcp.buywhere.ai/mcp"
    }
  }
}
```

The mcpServers block is a cross-client convention. Remote transports vary, so check your client's docs.

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-08-03 (score 72, +1)

No change was recorded against any check on this day. Stability & Change Management went from 23 to 27. That category is still filling its 30-day observation window: 7 days of observed history at the previous scan, 8 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-08-01 (score 71, +1)

No change was recorded against any check on this day. Stability & Change Management went from 17 to 20. That category is still filling its 30-day observation window: 5 days of observed history at the previous scan, 6 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-07-31 (score 70, +4)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-30 (score 66, 0)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-29 (score 66, +1)

- [security] Tool “search_products” rewrote its description, which is the text the model reads
- [cosmetic] “search_products” reworded the description of “mode”

### 2026-07-27 (score 65, +1)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-26 (score 64)

First indexed and scored.

## MCP tools (8)

### `search_products` (~360 tokens)

Search the BuyWhere product catalog by keyword. Returns products from e-commerce platforms across multiple regions (Singapore, US, etc.). Use compact=true for agent-optimized responses with structured_specs, comparison_attributes, and normalized_price_usd fields.

Input parameters:

- `category` (string): Filter by product category name (e.g. "Laptops", "Smartphones", "Televisions"). Use to exclude accessories and get actual products.
- `compact` (boolean): Return agent-optimized compact shape: structured_specs, comparison_attributes, normalized_price_usd. Reduces response size ~40%. Recommended for agent tool-use.
- `country` (string): Alias for country_code (deprecated, use country_code)
- `country_code` (string): Filter by ISO country code. Also infers default currency for price filters (SG→SGD, US→USD, VN→VND, TH→THB, MY→MYR).
- `domain` (string): Filter by merchant platform (e.g. lazada, shopee, amazon)
- `limit` (integer): Number of results (max 100, default 20)
- `max_price` (number): Maximum price (in currency inferred from country_code, or SGD by default)
- `min_price` (number): Minimum price (in currency inferred from country_code, or SGD by default)
- `mode` (string): Search mode: keyword=FTS only, semantic=vector only, hybrid=RRF blend of FTS+vector (default). Falls back to keyword if vector DB or GEMINI_API_KEY unavailable.
- `offset` (integer): Pagination offset
- `q` (string): Keyword search query
- `region` (string): Filter by region (sea, us, eu, au)

### `get_product` (~32 tokens)

Get a specific product by its ID, including full details and current price.

Input parameters:

- `id` (string, required): Product UUID

### `compare_products` (~44 tokens)

Compare multiple products side-by-side. Returns price, brand, rating, and category for each.

Input parameters:

- `ids` (array, required): Array of product IDs to compare (2-10)

### `get_deals` (~176 tokens)

Get discounted products sorted by discount percentage. Returns products with original price and discount percentage. Supports currency, region (sea, us, eu, au) and country (SG, US, VN, MY, ...) filters.

Input parameters:

- `country` (string): Alias for country_code (deprecated, use country_code)
- `country_code` (string): Filter by ISO country code. Alias: country.
- `currency` (string): Filter by currency code (SGD, USD, MYR, VND, THB). Defaults to SGD.
- `limit` (integer): Number of results (max 100, default 20)
- `min_discount` (number): Minimum discount percentage (default 10)
- `offset` (integer): Pagination offset
- `region` (string): Filter by region (sea, us, eu, au)

### `list_categories` (~91 tokens)

List top-level product categories available in the BuyWhere catalog.

Input parameters:

- `country` (string): Alias for country_code (deprecated, use country_code)
- `country_code` (string): Filter by ISO country code. Defaults to SG.
- `region` (string): Alias for country_code/market (us→US, sg→SG, my→MY, gb→GB, in→IN, au→AU).

### `find_best_price` (~173 tokens)

Use this whenever a user asks about prices, wants to find the cheapest option, or asks "what's the best price for X" or "where can I buy X for the lowest price". This finds the best current price across all merchants.

Input parameters:

- `category` (string): Category to filter by (e.g., "electronics", "fashion")
- `country` (string): Alias for country_code (deprecated, use country_code)
- `country_code` (string): Country to search in (defaults to SG). Alias: country.
- `product_name` (string, required): Product name to find best price for (e.g., "iphone 15 pro 256gb", "samsung galaxy s24")
- `region` (string): Region filter - use "us" for United States or "sea" for Southeast Asia

### `find_similar` (~79 tokens)

Find products similar to a given product using vector similarity. Returns up to 10 nearest neighbours by semantic meaning (title+description embedding). Useful for "more like this" recommendations.

Input parameters:

- `limit` (integer): Number of similar products to return (1-10, default 10)
- `product_id` (string, required): UUID of the source product

### `ingest_products` (~120 tokens)

Ingest (upsert) a batch of products into the BuyWhere catalog. Use this to add or update product listings from any merchant/source. Requires a valid API key with ingest permissions. Accepts up to 1000 products per call with source, SKU, title, price, URL, and optional metadata.

Input parameters:

- `products` (array, required): Array of product objects to ingest (max 1000)
- `source` (string, required): Data source identifier (e.g. "shopee_sg", "amazon_sg", "lazada_sg")

## Diagnostics

Captured diagnostic sections: TLS, DNSSEC, Authorisation, Transports. The full working is on the page: https://verifymcp.io/servers/ai-buywhere-catalog-api/mcp#diagnostics

## Score history

- 2026-08-03: 72
- 2026-08-02: 71
- 2026-08-01: 71
- 2026-07-31: 70
- 2026-07-30: 66
- 2026-07-29: 66
- 2026-07-28: 65
- 2026-07-27: 65
- 2026-07-26: 64

## Links

- Remote endpoint: https://mcp.buywhere.ai/mcp
- Authorisation metadata: https://mcp.buywhere.ai/.well-known/oauth-protected-resource/mcp
- Repository: https://github.com/BuyWhere/buywhere
- Changelog RSS feed: https://verifymcp.io/servers/ai-buywhere-catalog-api/mcp/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/ai-buywhere-catalog-api/mcp/changelog.json
- HTML version of this page: https://verifymcp.io/servers/ai-buywhere-catalog-api/mcp
