
Amazon.in MCP
- 7 repo stars
- Updated July 11, 2026
- justadityaraj/amazon-in-mcp
Amazon.in MCP Server is an MCP server that searches Amazon.in for in-stock deals, product details, and Keepa price history through your agent.
About
Amazon.in MCP Server exposes Model Context Protocol tools so Claude Code, Cursor, Codex, and other MCP clients can search India’s Amazon catalog without hand-copying tabs. developers validating physical products, curated gift guides, or hardware for a side project can ask the agent for the cheapest in-stock option, a best-value shortlist, or deep product facts, then layer Keepa price history to see whether a deal is typical or a spike. An optional AMAZON_IN_AFFILIATE_TAG environment variable lets you substitute your Associates tag or turn affiliate query params off entirely. The server ships as an npm stdio package (identifier amazon-in-mcp-server) aligned with the official MCP server schema. It is an integration layer, not a storefront or scraper dashboard—you still own compliance, rate limits, and how links appear in your app or newsletter.
- Search Amazon.in with cheapest in-stock and best-value sorting for agent-driven comparisons
- Product detail lookups with structured fields agents can cite in briefs or spreadsheets
- Keepa-backed price-history context for timing launches and promotions
- Optional AMAZON_IN_AFFILIATE_TAG override or disable for compliant Associates links
- stdio npm package (v0.1.1) runnable via npx for Claude Code, Cursor, and Codex MCP configs
Amazon.in MCP by the numbers
- Data as of Aug 10, 2026 (Skillselion catalog sync)
claude mcp add --env AMAZON_IN_AFFILIATE_TAG=YOUR_AMAZON_IN_AFFILIATE_TAG amazon-in-mcp-server -- npx -y amazon-in-mcp-serverAdd your badge
Show developers this MCP server is listed on Skillselion. Paste this into your README.
| repo stars | ★ 7 |
|---|---|
| Package | amazon-in-mcp-server |
| Transport | STDIO |
| Auth | None |
| Last updated | July 11, 2026 |
| Repository | justadityaraj/amazon-in-mcp ↗ |
What it does
Let your coding agent query Amazon.in for comparable products, live prices, and history while you scope an store, gear list, or affiliate content.
Who is it for?
Developers and affiliate bloggers who ship with MCP-enabled agents and need India-specific catalog facts in one conversation.
Skip if: Skip if you need multi-marketplace fulfillment APIs, wholesale B2B catalogs, or fully automated checkout outside Amazon.in browsing context.
What you get
After you register the stdio server, your agent can return ranked India listings and historical pricing you can paste into validation notes or content drafts.
- Agent-ready Amazon.in search results with stock-aware cheapest and best-value rankings
- Product detail payloads suitable for validation docs or comparison tables
- Price-history context from Keepa for promotion timing decisions
By the numbers
- Server schema version 0.1.1 on npm with stdio transport
- Optional single env var AMAZON_IN_AFFILIATE_TAG for link tagging
- Repository: github.com/justadityaraj/amazon-in-mcp
README.md
amazon-in-mcp
An MCP server that lets your LLM shop on Amazon.in.
Cheapest in-stock listing. Best-value pick. Price history. No paid APIs.
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
Claude Code
claude mcp add amazon-in -- node /absolute/path/to/amazon-in-mcp/dist/index.js
Claude Desktop
Edit ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"amazon-in": {
"command": "node",
"args": ["/absolute/path/to/amazon-in-mcp/dist/index.js"]
}
}
}
Cursor / Windsurf / others
Same JSON config as Claude Desktop. Drop it into the client's MCP settings file.
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.
Recommended MCP Servers
How it compares
Amazon.in-focused MCP search tools, not a general web-scraping skill or hosted ecommerce backend.
FAQ
Who is Amazon.in MCP for?
Developers using Claude Code, Cursor, or Codex who research products on Amazon.in while validating offers, hardware, or affiliate content.
When should I use Amazon.in MCP?
Use it during idea-stage research when you need cheapest in-stock picks, value rankings, product details, or Keepa history without leaving the agent thread.
How do I add Amazon.in MCP to my agent?
Add the npm stdio server (npx amazon-in-mcp-server or package identifier from server.json), optionally set AMAZON_IN_AFFILIATE_TAG, and point your client’s MCP config at the process.