# CartScout (pypi · cartscout-mcp)

Live product prices, stock, variants and deal ratings from Shopify, Walmart, eBay and more.

- Trust score: 68/100 (medium)
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-09-20

## Components

- pypi · `cartscout-mcp`: 68/100 (this document), [markdown](https://verifymcp.io/servers/veselin15-cartscout-mcp/cartscout-mcp.md), [page](https://verifymcp.io/servers/veselin15-cartscout-mcp/cartscout-mcp)

## Channel facts

- Registry: `pypi`
- Package: `cartscout-mcp`
- Version: `0.1.0`
- Transport: `stdio`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, 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-09-20.

- **Supply Chain Security**: 100/100
  - No malware found by supply-chain analysis.
  - No known CVEs affecting this package version or its production dependencies.
  - Runs hatchling.build at install time, a recognised native-build step with no shell scripting around it.
  - 1 of 32 dependencies flagged as unhealthy.
- **Provenance & Transparency**: 32/100
  - Source repository is publicly reachable at the declared URL.
  - Provenance check failed: no build-provenance attestation is published.
  - License check failed: the license (MIT License) isn't a recognized OSI-approved license.
  - Actively maintained (last published 4 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 74/100
  - AI-judged instruction clarity (excellent).
  - Context-footprint check failed: tool/resource definitions use about 658 tokens (~164/item across 4 items; 4 tools + 0 resources), over budget; trim descriptions and params.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 0/100
  - Stability not yet verified: not enough scan history yet (needs a 30-day window).
- **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.
  - Structured output schemas are declared (100% of tools); any adoption earns full credit.
- **Tool Safety**: 100/100
  - No prompt-injection markers were found in the server instructions, tool names or descriptions we captured.
  - We read all 4 captured tool definition(s), and no name or description among them implies an irreversible operation.
  - An AI judge read all 5 captured unit(s) of tool text and found none that tries to manipulate the model reading it.
- **Capabilities**: 100/100
  - Implements a current MCP spec version (2026-07-28).

**Unverified: 1 category.** A category scored 0 because we could not verify it: a data source with nothing on this package, evidence we could not reach, or a check we could not run. We only credit what we can confirm.

## Install

### How do I install the CartScout MCP server?

CartScout runs locally as a PyPI package, launched with uvx cartscout-mcp. Ready-made configuration for Claude, Cursor, VS Code, Codex and 5 more is on this page, copied from each client's own documentation.

### Claude

```bash
claude mcp add veselin15-cartscout-mcp -- uvx cartscout-mcp
```

### Cursor

```json
{
  "mcpServers": {
    "veselin15-cartscout-mcp": {
      "command": "uvx",
      "args": [
        "cartscout-mcp"
      ]
    }
  }
}
```

### VS Code

```json
{
  "servers": {
    "veselin15-cartscout-mcp": {
      "command": "uvx",
      "args": [
        "cartscout-mcp"
      ]
    }
  }
}
```

### Codex

```bash
codex mcp add veselin15-cartscout-mcp -- uvx cartscout-mcp
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "veselin15-cartscout-mcp": {
      "type": "local",
      "command": [
        "uvx",
        "cartscout-mcp"
      ],
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add veselin15-cartscout-mcp --command uvx --arg cartscout-mcp
```

### Hermes

```yaml
mcp_servers:
  veselin15-cartscout-mcp:
    command: "uvx"
    args: ["cartscout-mcp"]
```

### Netclaw

```json
{
  "McpServers": {
    "veselin15-cartscout-mcp": {
      "Transport": "stdio",
      "Command": "uvx",
      "Arguments": [
        "cartscout-mcp"
      ]
    }
  }
}
```

### Vellum

```bash
assistant mcp add veselin15-cartscout-mcp -t stdio -c uvx -a cartscout-mcp
```

### Other

```json
{
  "mcpServers": {
    "veselin15-cartscout-mcp": {
      "command": "uvx",
      "args": [
        "cartscout-mcp"
      ]
    }
  }
}
```

## 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-09-16 (score 68, +15)

- [security improvement] Malware scan: unverified → pass

### 2026-09-15 (score 53)

First indexed and scored.

## MCP tools (4)

### `get_product` (~153 tokens)

Get product price and stock

Get the live price, stock status, discount, variants, identifiers (SKU, GTIN) and rating of one
product page. Works with Shopify, WooCommerce, Walmart and eBay stores, Amazon in beta.
Uses 1 extraction from the user's CartScout plan.

Input parameters:

- `include_description` (boolean): Add the product description.
- `include_reviews` (boolean): Add up to 10 customer reviews from the page.
- `include_variants` (boolean): Add every size/colour option with its own price and stock (up to 50).
- `url` (string, required): Full URL of one product page, e.g. https://www.allbirds.com/products/mens-tree-runner-nz-ochre

Output parameters:

- `availability` (string): in_stock, limited_availability, out_of_stock, pre_order, back_order, discontinued or unknown.
- `brand`
- `cached` (boolean): True when served from a cache up to 60 minutes old.
- `category`
- `condition`
- `currency`: ISO 4217 code, e.g. USD. Prices follow the store's region.
- `description`: Present when include_description is true.
- `discount_percent`
- `extracted_at` (string): When the page was read (UTC).
- `gtin`: GTIN / UPC / EAN barcode number.
- `image`: Main product image URL.
- `image_count` (integer)
- `in_stock`: True if it can be bought now; null when unknown.
- `mpn`
- `original_price`: List or strikethrough price before a discount.
- `price`: Current price in the store's currency.
- `rating`
- `review_count_on_page` (integer): Reviews published on the page itself.
- `reviews`: Present when include_reviews is true.
- `seller`
- `sku`
- `store` (string): Store domain.
- `title`
- `url` (string): Product page URL after redirects.
- `variant_count` (integer): Number of sizes, colours or other options.
- `variants`: Present when include_variants is true.

### `compare_products` (~89 tokens)

Compare products across stores

Compare 2-10 product pages side by side: cheapest, cheapest in stock, best rated, biggest discount,
price spread and whether every page sells the same product (matching GTIN). Uses 1 extraction per
URL and needs a paid CartScout plan (PRO or higher).

Input parameters:

- `urls` (array, required): 2 to 10 product page URLs, e.g. one item at several stores.

Output parameters:

- `failed` (integer)
- `products` (array)
- `succeeded` (integer)
- `summary`
- `total` (integer)

### `check_deal` (~135 tokens)

Check if a price is a good deal

Rate whether a product's current price is a good deal compared with its recorded price history,
with the average, lowest and highest price in the period. History builds up each time CartScout
reads the product, so a product seen for the first time has little to compare against.

Input parameters:

- `days` (integer): Period to compare against, capped by the plan.
- `refresh` (boolean): Fetch the current price first so the rating includes today (1 extraction).
- `url` (string, required): Full URL of one product page, e.g. https://www.allbirds.com/products/mens-tree-runner-nz-ochre

Output parameters:

- `average_price`: Time-weighted average price over the period.
- `currency`
- `current_availability` (string)
- `current_price`
- `data_points` (integer)
- `days` (integer): Days of history analyzed, limited by the plan.
- `deal_rating` (string): How the current price compares with its recorded history, from the lowest price in the period through great, good and fair to high; insufficient_data while the product has less than a day of history.
- `highest_price`
- `highest_price_at`
- `in_stock_percent`
- `last_observed_at`
- `lowest_price`
- `lowest_price_at`
- `percent_vs_average`
- `price_changes` (integer)
- `refreshed` (boolean): True when the current price was fetched just before rating.
- `url` (string)
- `verdict` (string): One-sentence explanation of the rating.

### `get_price_history` (~108 tokens)

Get price history

Recorded price and stock changes of a product page, with the current, lowest and highest price.
History exists only for products CartScout has read before; call get_product first to start it.
Does not use extractions.

Input parameters:

- `days` (integer): Days of history, capped by the plan (14 on the free plan).
- `url` (string, required): Full URL of one product page, e.g. https://www.allbirds.com/products/mens-tree-runner-nz-ochre

Output parameters:

- `currency`
- `current_price`
- `days` (integer): Days of history returned, limited by the plan.
- `highest_price`
- `lowest_price`
- `points` (array): Oldest first; a point is recorded when price or stock changes.
- `points_omitted` (integer): Older points left out to keep the answer short.
- `url` (string)

## Diagnostics

Captured diagnostic sections: Provenance, Install scripts, Dependencies. The full working is on the page: https://verifymcp.io/servers/veselin15-cartscout-mcp/cartscout-mcp#diagnostics

## Score history

- 2026-09-20: 68
- 2026-09-19: 68
- 2026-09-18: 68
- 2026-09-17: 68
- 2026-09-16: 68
- 2026-09-15: 53

## Common questions

### What is the CartScout MCP server?

CartScout is an MCP server listed in the public MCP registry as io.github.Veselin15/cartscout-mcp. Live product prices, stock, variants and deal ratings from Shopify, Walmart, eBay and more. This page covers its PyPI package (cartscout-mcp).

### Is the CartScout MCP server safe to use?

CartScout scores 68 out of 100 on VerifyMCP. We found no known CVEs affecting it as of 20 September 2026. That is a record of what we were able to check automatically, not an endorsement. The category breakdown on this page shows every signal behind the number, including the ones we could not confirm.

### What tools does the CartScout MCP server expose?

CartScout exposes 4 tools: get_product, compare_products, check_deal, get_price_history. Their descriptions and schemas cost roughly 485 tokens of context every time the server is loaded.

### Is the CartScout MCP server still maintained?

CartScout is still listed as active in the MCP registry. We last reached this channel on 20 September 2026. Those dates come from our own scans of the registry and the channel itself, not from anything the publisher announced.

## Links

- PyPI project: https://pypi.org/project/cartscout-mcp/
- Socket report: https://socket.dev/pypi/package/cartscout-mcp
- Repository: https://github.com/Veselin15/cartscout-mcp
- Website: https://api.vesflow.dev/
- Changelog RSS feed: https://verifymcp.io/servers/veselin15-cartscout-mcp/cartscout-mcp.xml
- Changelog JSON feed: https://verifymcp.io/servers/veselin15-cartscout-mcp/cartscout-mcp.json
- HTML version of this page: https://verifymcp.io/servers/veselin15-cartscout-mcp/cartscout-mcp
