MCP server that gives Claude, Cursor and other AI agents live product prices, stock, variants and deal ratings from Shopify, WooCommerce, Walmart, eBay and Amazon.
- ✓Open-source license (MIT)
- ✓Actively maintained (<30d)
- ✓Clear description
- ✓Topics declared
- ✓Documented (README)
claude mcp add cartscout-mcp -- uvx cartscout-mcp{
"mcpServers": {
"cartscout-mcp": {
"command": "uvx",
"args": ["cartscout-mcp"],
"env": {
"RAPIDAPI_KEY": "<rapidapi_key>"
}
}
}
}RAPIDAPI_KEYResumen de MCP Servers
# CartScout MCP server
[](https://pypi.org/project/cartscout-mcp/)
[](https://github.com/Veselin15/cartscout-mcp/actions/workflows/tests.yml)
<!-- mcp-name: io.github.Veselin15/cartscout-mcp -->
Give Claude, Cursor or any MCP-capable AI agent **live product prices, stock, variants and deal
ratings** from online stores. Paste a product link into the chat and ask "is this a good price?",
"which of these three stores is cheapest and in stock?" or "does it come in size 10?".
Works with **Shopify, WooCommerce, Walmart and eBay** stores, with **Amazon in beta**. The data comes
from the [CartScout API](https://rapidapi.com/veselinveselinov06/api/cartscout-api), which handles
fetching, bot filters and parsing. [Try the API in your browser](https://api.vesflow.dev) first,
no sign-up needed.
## Tools
| Tool | What the agent gets | Uses |
|---|---|---|
| `get_product` | Price, list price and discount, stock, variants (sizes, colours) with their own price and stock, SKU / GTIN, rating, optional reviews and description | 1 extraction |
| `compare_products` | 2-10 pages ranked: cheapest, cheapest in stock, best rated, biggest discount, price spread, same product by GTIN | 1 extraction per URL, PRO plan or higher |
| `check_deal` | Deal rating of the current price against its recorded history, with average, lowest and highest price | 1 extraction (or none with `refresh: false`) |
| `get_price_history` | Recorded price and stock changes with current, lowest and highest price | No extractions |
Every tool is read-only and returns structured JSON with an output schema. Responses are trimmed
for agents: bulky parts such as all variants, reviews and the description are included only when
the agent asks for them.
## Setup
1. Subscribe to CartScout on RapidAPI. The **free plan includes 300 extractions a month**:
[plans](https://rapidapi.com/veselinveselinov06/api/cartscout-api/pricing).
2. Copy your `X-RapidAPI-Key` from the RapidAPI dashboard.
3. Add the server to your client. It runs with [uv](https://docs.astral.sh/uv/), which installs it on
first use.
### Claude Code
```bash
claude mcp add cartscout -e RAPIDAPI_KEY=your-rapidapi-key -- uvx cartscout-mcp
```
### Claude Desktop
Settings → Developer → Edit config, then add:
```json
{
"mcpServers": {
"cartscout": {
"command": "uvx",
"args": ["cartscout-mcp"],
"env": { "RAPIDAPI_KEY": "your-rapidapi-key" }
}
}
}
```
### Cursor
Add the same `mcpServers` block to `~/.cursor/mcp.json` (all projects) or `.cursor/mcp.json` (one project).
## Example prompts
- "What does https://www.allbirds.com/products/mens-tree-runner-nz-ochre cost, and is size 10 in stock?"
- "Is $79 a good price for this air fryer? https://www.walmart.com/ip/844320666"
- "Compare these three listings and tell me the cheapest one I can buy today: …"
- "Show me how the price of this product changed over the last two weeks."
CartScout reads product pages; it does not search stores. Give the agent product URLs, or let it find
them with a web search tool first.
## Configuration
| Variable | Default | Purpose |
|---|---|---|
| `RAPIDAPI_KEY` | required | Your RapidAPI key |
| `CARTSCOUT_RAPIDAPI_HOST` | `cartscout-api.p.rapidapi.com` | RapidAPI host of the API |
| `CARTSCOUT_API_URL`, `CARTSCOUT_API_KEY` | unset | Use a directly issued CartScout key instead of RapidAPI |
The server sends only the product URLs your agent asks about to the CartScout API. Without a key
it still starts and lists its tools (handy for MCP inspectors); each tool call then explains how to
add `RAPIDAPI_KEY`.
### Docker
```bash
docker build -t cartscout-mcp .
docker run -i --rm -e RAPIDAPI_KEY=your-rapidapi-key cartscout-mcp
```
### HTTP transport
`cartscout-mcp --transport streamable-http --port 8000` serves the tools at
`http://127.0.0.1:8000/mcp`. Every client connected to it uses the key from the environment, so keep
it on a private address.
## Good to know
- Prices follow each store's own region and currency.
- Results can be cached for up to 60 minutes (`cached: true`).
- Price history and deal ratings build up as products are read. A product seen for the first time
has little history to compare against.
- History range depends on the plan: 14 days on the free plan, up to 365 days on MEGA.
- When a store blocks a request, the tool returns an error explaining it, and the failed request is
not billed.
## Development
```bash
uv sync
uv run pytest
```
## License
MIT
Lo que la gente pregunta sobre cartscout-mcp
¿Qué es Veselin15/cartscout-mcp?
+
Veselin15/cartscout-mcp es mcp servers para el ecosistema de Claude AI. MCP server that gives Claude, Cursor and other AI agents live product prices, stock, variants and deal ratings from Shopify, WooCommerce, Walmart, eBay and Amazon. Tiene 0 estrellas en GitHub y su última actualización registrada es del 2026-09-15.
¿Cómo se instala cartscout-mcp?
+
Puedes instalar cartscout-mcp clonando el repositorio (https://github.com/Veselin15/cartscout-mcp) o siguiendo las instrucciones del README en GitHub. ClaudeWave también te ofrece bloques de instalación rápida en esta misma página.
¿Es seguro usar Veselin15/cartscout-mcp?
+
Nuestro agente de seguridad ha analizado Veselin15/cartscout-mcp y le ha asignado un Trust Score de 95/100 (tier: Verified). Revisa el desglose completo de comprobaciones superadas y flags en esta página.
¿Quién mantiene Veselin15/cartscout-mcp?
+
Veselin15/cartscout-mcp es mantenido por Veselin15. La última actividad registrada en GitHub es del 2026-09-15, con 0 issues abiertos.
¿Hay alternativas a cartscout-mcp?
+
Sí. En ClaudeWave puedes explorar mcp servers similares en /categories/mcp, ordenados por popularidad o actividad reciente.
Despliega cartscout-mcp en tu cloud
Lleva este repo a producción en minutos. Cada plataforma genera su propio entorno con variables de entorno editables.
¿Mantienes este repo? Añade un badge a tu README
Pega el badge en tu README de GitHub para mostrar que está auditado por ClaudeWave. Cada badge enlaza de vuelta a esta página y muestra el Trust Score actual.
[](https://claudewave.com/repo/veselin15-cartscout-mcp)<a href="https://claudewave.com/repo/veselin15-cartscout-mcp"><img src="https://claudewave.com/api/badge/veselin15-cartscout-mcp" alt="Featured on ClaudeWave: Veselin15/cartscout-mcp" width="320" height="64" /></a>Más MCP Servers
Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.
User-friendly AI Interface (Supports Ollama, OpenAI API, ...)
An open-source AI agent that brings the power of Gemini directly into your terminal.
Real-time global intelligence dashboard. AI-powered news aggregation, geopolitical monitoring, and infrastructure tracking in a unified situational awareness interface
🕷️ An adaptive Web Scraping framework that handles everything from a single request to a full-scale crawl! Don't be shy, join here: https://discord.gg/EMgGbDceNQ
The fastest path to AI-powered full stack observability, even for lean teams.