amazon-in-mcp
MCP server for amazon.in — cheapest in-stock, best-value picks, and price history links.
README
<p align="center"> <img src="./assets/social-preview.png" alt="amazon-in-mcp" width="900" /> </p>
<h1 align="center">amazon-in-mcp</h1>
<p align="center"> An <a href="https://modelcontextprotocol.io">MCP</a> server that lets your LLM shop on Amazon.in.<br/> Cheapest in-stock listing. Best-value pick. Price history. No paid APIs. </p>
<p align="center"> <a href="LICENSE"><img alt="License" src="https://img.shields.io/badge/license-MIT-black.svg"></a> <img alt="Node" src="https://img.shields.io/badge/node-%E2%89%A518-black.svg"> <a href="https://github.com/justadityaraj/amazon-in-mcp/releases"><img alt="Release" src="https://img.shields.io/github/v/release/justadityaraj/amazon-in-mcp?color=black"></a> <img alt="MCP" src="https://img.shields.io/badge/MCP-stdio-FF9900.svg"> </p>
What it does
Three tools your LLM can call against amazon.in:
| Tool | What it returns |
|---|---|
search_amazon_in(query, max_results=5) |
Ranked listings + two convenience picks: cheapest in stock and best value (rating × log10(reviews) / √price) |
get_product(asin_or_url) |
Full product detail — price, MRP, discount, rating, reviews, stock, bullets, brand, seller, delivery |
price_history_link(asin_or_url) |
A Keepa.com chart URL for the amazon.in domain. No network call. |
No API keys. No accounts. Runs locally over stdio. Direct HTML scraping with rotating user agents and retry on bot-check pages.
Quick start
1. Install (Claude Code):
git clone https://github.com/justadityaraj/amazon-in-mcp.git
cd amazon-in-mcp && npm install && npm run build
claude mcp add amazon-in -- node "$PWD/dist/index.js"
2. Restart your MCP client (Claude Code, Cursor, Claude Desktop, etc.)
3. Ask:
"Find me a good 1TB external SSD on amazon.in under ₹10,000. Best value pick."
Your LLM will call search_amazon_in, rank by value, and hand back a real product with current price and a Keepa link for price history.
What it looks like
A real call to search_amazon_in("wireless mouse", max_results=3) returns:
{
"query": "wireless mouse",
"total_results": 3,
"results": [
{
"asin": "B0CQRNWJM2",
"title": "ZEBRONICS Blanc Slim Wireless Mouse...",
"url": "https://www.amazon.in/dp/B0CQRNWJM2?tag=artech-21",
"price_inr": 423,
"mrp_inr": 799,
"rating": 4.0,
"review_count": 7801,
"in_stock": true,
"delivery": "FREE delivery Tomorrow",
"price_history_url": "https://keepa.com/#!product/12-B0CQRNWJM2"
}
],
"cheapest_in_stock": { "asin": "...", "price_inr": 199, "...": "..." },
"best_value": { "asin": "...", "rating": 4.3, "...": "..." }
}
get_product adds bullets[], brand, seller, discount_percent, availability.
Configure your MCP client
<details> <summary><b>Claude Code</b></summary>
claude mcp add amazon-in -- node /absolute/path/to/amazon-in-mcp/dist/index.js
</details>
<details> <summary><b>Claude Desktop</b></summary>
Edit ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"amazon-in": {
"command": "node",
"args": ["/absolute/path/to/amazon-in-mcp/dist/index.js"]
}
}
}
</details>
<details> <summary><b>Cursor / Windsurf / others</b></summary>
Same JSON config as Claude Desktop. Drop it into the client's MCP settings file. </details>
Image search
The server intentionally doesn't accept image input — keeps it provider-agnostic. Instead, paste the image into your LLM client, ask it to describe the product, and it'll call search_amazon_in with the right keywords automatically. Works the same in every MCP-capable client.
How "best value" is scored
Among in-stock listings with at least 10 reviews:
$$ \text{score} = \frac{\text{rating} \times \log_{10}(\text{reviews} + 10)}{\sqrt{\text{price}}} $$
The highest score wins. cheapest_in_stock is just the lowest price_inr among in-stock items — useful when you want raw cheapness instead of balance.
Robustness
| UA rotation | 5 modern desktop UAs (Chrome / Safari / Firefox on Mac / Win / Linux) |
| Retries | 3 attempts, exponential backoff on 5xx, 429, and bot-check pages |
| Bot detection | Scans first 8 KB for known CAPTCHA / robot markers |
| Timeout | 20 s per request |
| State | None. Stdio, no cookies, no session |
Expect ~1–5% of requests to fail with a bot-check during heavy use. Wait 30–60 seconds and retry, or run from a different network.
How this project is funded
By default, amazon.in URLs returned by this server include the author's Amazon Associates tag (artech-21). If you (or your LLM) click through and buy something, the author earns a small commission. You pay the same price. This is the only way the project stays free, MIT, and actively maintained.
Override or disable anytime with the AMAZON_IN_AFFILIATE_TAG env var:
| Value | Behavior |
|---|---|
| unset | Author's tag (artech-21) — supports the project |
yourtag-21 |
Your own Amazon Associates tag |
none / off / false / "" |
No tag, raw amazon.in URLs |
Example — your own tag:
{
"mcpServers": {
"amazon-in": {
"command": "node",
"args": ["/path/to/dist/index.js"],
"env": { "AMAZON_IN_AFFILIATE_TAG": "yourtag-21" }
}
}
}
Roadmap
- [ ] Publish to npm so install becomes
npx -y amazon-in-mcp-server - [ ] Optional Keepa API support (user-supplied key) for real price-history data
- [ ] Filter helpers —
min_rating,min_reviews,under_price - [ ] Smoke-test suite with cached HTML fixtures
Development
npm install
npm run dev # tsx watch
npm run build # tsc → dist/
npm start # node dist/index.js
Test interactively with the MCP Inspector:
npx @modelcontextprotocol/inspector node dist/index.js
Project layout:
src/
index.ts # MCP server + 3 tool registrations
scraper.ts # fetch with UA rotation, retry, bot-check
parse.ts # cheerio selectors for search + product pages
constants.ts # UAs, headers, tuning constants, affiliate config
types.ts # SearchResultItem, ProductDetail
Disclaimer
Fetches publicly accessible amazon.in pages for personal research and assistant use. Does not bypass authentication, paywalls, or CAPTCHAs — when Amazon serves a bot-check the tool stops and reports the error.
You are responsible for using this in line with Amazon's Terms of Service and any local laws. No warranty about uptime, accuracy, or fitness for any purpose. DOM selectors are best-effort and may break when Amazon updates its layout. PRs welcome.
License
MIT © Aditya Raj Singh
Issues, bug reports, and selector fixes welcome — Amazon's DOM shifts every few months, so this will break occasionally and need community help to keep current. <!-- by Aditya Raj Singh -->
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。