# Tosheroon (remote · tosheroon.com)

Real-time Amazon prices, product search, 90-day history, AI forecasts, and price drop alerts.

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

## Components

- remote · `tosheroon.com`: 65/100 (this document), [markdown](https://verifymcp.io/servers/com-tosheroon-mcp/tosheroon.md), [page](https://verifymcp.io/servers/com-tosheroon-mcp/tosheroon)

## Channel facts

- Endpoint: `https://tosheroon.com/mcp`
- Transports: `streamable-http`
- Auth: `none`
- Version: `1.0.1`

## 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**: 57/100
  - The endpoint's TLS certificate is valid, in date, and uses a strong key.
  - Authorisation not fully verified: no authorisation is required to call this server, and 12 tool(s) never declared a destructiveHint. The MCP spec treats an absent hint as destructive by default, so we cannot call this surface safe.
  - 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**: 81/100
  - AI-judged instruction clarity (excellent).
  - Tool/resource definitions use about 1104 tokens (~92/item across 12 items; 12 tools + 0 resources), lean.
  - 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**: 40/100
  - Spec-recency check failed: implements MCP spec 2025-03-26; the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add --transport http com-tosheroon-mcp https://tosheroon.com/mcp
```

### Codex

```toml
[mcp_servers.com-tosheroon-mcp]
url = "https://tosheroon.com/mcp"
```

### opencode

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

### OpenClaw

```bash
openclaw mcp add com-tosheroon-mcp --url https://tosheroon.com/mcp --transport streamable-http
```

### Hermes

```yaml
mcp_servers:
  com-tosheroon-mcp:
    url: "https://tosheroon.com/mcp"
```

### Other

```json
{
  "mcpServers": {
    "com-tosheroon-mcp": {
      "type": "http",
      "url": "https://tosheroon.com/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 65, +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-07-31 (score 64, 0)

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

### 2026-07-30 (score 64, 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 64, +1)

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

### 2026-07-27 (score 63, +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 62)

First indexed and scored.

## MCP tools (12)

### `search_products` (~298 tokens)

Search for Amazon products by keyword, ASIN, or Amazon URL with optional filters for brand, category, price range, stock status, and sorting. Returns product IDs for use with other tools. Rate limited to 20 req/min without an API key — use the register_api_key tool for 120 req/min.

Input parameters:

- `brand` (string): Filter by brand name (e.g. Apple, Samsung, Sony)
- `category` (string): Filter by category (e.g. Laptops, Headphones, TVs)
- `in_stock` (boolean): When true, only returns in-stock products. When false, returns both in-stock and out-of-stock products (it does NOT filter to out-of-stock only). Defaults to true.
- `limit` (integer): Number of results to return (1-50). Defaults to 20.
- `max_price` (number): Maximum price in the region's currency (e.g. 500 for £500)
- `min_price` (number): Minimum price in the region's currency (e.g. 100 for £100)
- `query` (string): Search keyword, Amazon ASIN (e.g. B08N5WRWNW), or Amazon product URL. Optional when using brand/category filters.
- `region` (string): Country code (e.g. uk, us, de). Defaults to uk.
- `sort_by` (string): Sort order for results. Defaults to relevance.

### `get_product` (~47 tokens)

Get detailed product information by product_id. Returns full product details including current price and affiliate buy link.

Input parameters:

- `product_id` (integer, required): The product ID returned by search_products or other discovery tools

### `get_price_history` (~71 tokens)

Get price history for a product by product_id. Returns daily prices for up to 90 days.

Input parameters:

- `days` (integer): Number of days of history to return (1-90). Defaults to 90.
- `product_id` (integer, required): The product ID returned by search_products or other discovery tools

### `get_price_drops` (~69 tokens)

Get Amazon products with recent significant price drops. Returns products sorted by drop percentage.

Input parameters:

- `limit` (integer): Number of results to return (1-20). Defaults to 10.
- `region` (string): Country code (e.g. uk, us, de). Defaults to uk.

### `browse_by_category` (~97 tokens)

Browse Amazon products by category. Omit category to list all available categories. Provide a category name to get products in that category.

Input parameters:

- `category` (string): Category name to browse. Omit to list all available categories.
- `limit` (integer): Number of products to return (1-50). Defaults to 20.
- `region` (string): Country code (e.g. uk, us, de). Defaults to uk.

### `browse_by_brand` (~87 tokens)

Browse Amazon products by brand name. Returns products matching the given brand.

Input parameters:

- `brand` (string, required): Brand name to search for (e.g. Sony, Apple, Samsung)
- `limit` (integer): Number of products to return (1-50). Defaults to 20.
- `region` (string): Country code (e.g. uk, us, de). Defaults to uk.

### `get_price_statistics` (~53 tokens)

Get price statistics for a product (all-time high/low, mean, median, histogram). Uses cached data for performance.

Input parameters:

- `product_id` (integer, required): The product ID returned by search_products or other discovery tools

### `get_price_forecast` (~52 tokens)

Get a 30-day price forecast for a product. Requires sufficient price history. Returns predicted prices with confidence scores.

Input parameters:

- `product_id` (integer, required): The product ID returned by search_products or other discovery tools

### `create_price_alert` (~88 tokens)

Create a price drop alert. You'll receive an email when the product drops to or below your target price.

Input parameters:

- `email` (string, required): The email address to send the alert to
- `product_id` (integer, required): The product ID returned by search_products or other discovery tools
- `target_price` (number, required): The target price — alert is sent when the product drops to or below this price

### `create_in_stock_alert` (~62 tokens)

Create a back-in-stock alert. You'll receive an email when the product becomes available again.

Input parameters:

- `email` (string, required): The email address to send the alert to
- `product_id` (integer, required): The product ID returned by search_products or other discovery tools

### `get_similar_products` (~64 tokens)

Find products similar to a given product. Useful for discovering alternatives or related items.

Input parameters:

- `limit` (integer): Number of similar products to return (1-20). Defaults to 6.
- `product_id` (integer, required): The product ID to find similar products for

### `register_api_key` (~56 tokens)

Register for a free API key to increase your rate limits from 20/min to 120/min. An API key will be emailed to you.

Input parameters:

- `email` (string, required): Your email address. The API key will be sent here.

## Diagnostics

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

## Score history

- 2026-08-03: 65
- 2026-08-02: 64
- 2026-08-01: 64
- 2026-07-31: 64
- 2026-07-30: 64
- 2026-07-29: 64
- 2026-07-28: 63
- 2026-07-27: 63
- 2026-07-26: 62

## Links

- Remote endpoint: https://tosheroon.com/mcp
- Website: https://tosheroon.com/tools/mcp
- Changelog RSS feed: https://verifymcp.io/servers/com-tosheroon-mcp/tosheroon/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/com-tosheroon-mcp/tosheroon/changelog.json
- HTML version of this page: https://verifymcp.io/servers/com-tosheroon-mcp/tosheroon
