Amazon.in MCP Server
Allows searching products, reading order history, and analyzing order trends on Amazon.in using a persistent browser session.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Amazon.in MCP Serversearch for wireless mouse under 1000"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
amazon-in-mcp
A stdio MCP server for Amazon.in that drives a single, persistent, logged-in Playwright/Chromium session. It lets an MCP client (Claude Code, Claude Desktop, etc.) search products, read your orders, and analyze your order trends.
⚠️ Personal-use tool, unofficial. Not affiliated with, endorsed by, or associated with Amazon. It automates your own logged-in Amazon account via a browser — there is no official consumer API for order history, so it reads the same pages you see. Heavy automation can trip CAPTCHAs and brushes against Amazon's Terms of Service. Use it privately and responsibly; you are responsible for your own account and how you use it.
Tools
Tool | Auth needed | What it returns |
| – | Opens a visible window at the Amazon.in sign-in page and holds it open so you can sign in by hand — no terminal needed |
| – | Confirms sign-in, closes the window, returns to headless |
| – | Whether you're signed in / walled by CAPTCHA |
| – | Current mode (headless/headed), whether a browser is open, idle timeout, profile dir |
| – | Switch headless ↔ headed at runtime (relaunches on next call; login preserved) |
| no | title, price ₹, rating, ASIN, URL |
| yes | order id, date, total, item titles (paginated) |
| yes | readable detail of one order |
| yes | total spend, avg order value, spend by month, top repeated items, biggest orders |
Related MCP server: Amazon MCP Server
Install as a Claude Desktop extension (MCPB) — easiest
A prebuilt MCPB bundle (.mcpb) is attached to each
GitHub Release.
This is the one-click path for Claude Desktop — no cloning or building.
Download
amazon-in-marketplace-mcp.mcpbfrom the latest release.Install it: open Claude Desktop → Settings → Extensions → drag the
.mcpbfile in (or double-click the file). Review the tools it exposes and click Install.Configure (optional) in the extension's settings pane:
Run headless — on by default (no window). Turn off if order pages start showing CAPTCHAs.
Idle auto-close (ms) — how long the browser lingers before closing itself (default 45000;
0= never).
Sign in — no terminal needed. Just ask Claude to run the
logintool. A Chrome window opens at the Amazon.in sign-in page and stays open; sign in by hand (including OTP/CAPTCHA). When you see "Hello, <name>", ask Claude to runfinish_login— it confirms, closes the window, and goes back to headless. Your session is saved to~/.amazon-in-mcp/profileand reused on every later call.Chromium requirement. The bundle ships the server + Node deps but not the Chromium binary (Playwright keeps that in a shared cache). If the
logintool errors that a browser is missing, run once in a terminal:npx playwright install chromium
To build the .mcpb yourself: npm run build && npx @anthropic-ai/mcpb pack .
Install from Git
Clone the repo and build from source (there is no npm-registry package — install straight from Git):
# 1. Clone
git clone git@github.com:kausikram/amazon-in-marketplace-mcp.git
cd amazon-in-marketplace-mcp
# 2. Install deps (postinstall also downloads the Chromium browser binary)
npm install
# 3. Build the TypeScript
npm run build
# 4. Build only — no CLI login step needed. Sign in later from your MCP client
# by asking Claude to run the `login` tool (opens a window), then
# `finish_login`. (A CLI fallback still exists: `npm run login`.)You can also install a specific commit or branch by cloning that ref, e.g.
git clone -b main git@github.com:kausikram/amazon-in-marketplace-mcp.git.
After npm run build, the runnable entry
point is dist/index.js — that's the path you register with your MCP client
(see Register below).
Requires Node 18+ and enough disk for the Chromium download (~150 MB).
Setup
cd amazon-in-mcp
npm install # also runs `playwright install chromium`
npm run buildSigning in: you don't need the command line. Once the server is registered
with your MCP client, ask Claude to run the login tool — a Chrome window
opens at the sign-in page; sign in by hand, then run finish_login. The
session is stored in a persistent profile at ~/.amazon-in-mcp/profile
(override with AMAZON_MCP_PROFILE_DIR) and reused, so you sign in just once.
CLI fallback:
npm run logindoes the same thing from a terminal if you prefer.
Environment variables
Var | Default | Meaning |
|
| Chrome profile dir (holds your session) |
|
| Set |
|
| Idle ms before the browser auto-closes. |
Register with Claude Code
Add to your .mcp.json (or claude mcp add):
{
"mcpServers": {
"amazon-in": {
"command": "node",
"args": ["/Users/kausikram/MCP_Servers/amazon-in-mcp/dist/index.js"],
"env": {
"AMAZON_MCP_HEADLESS": "0"
}
}
}
}Then, in a chat: "search amazon for a 100W usb-c charger", "list my orders from the last 3 months", "analyze my 2024 amazon spending."
How it works / where to fix things
src/browser.ts— the single persistent Chromium context (profile reuse, stealth touches).src/auth.ts— sign-in / CAPTCHA detection; every order tool guards on it.src/parse.ts— all fragile DOM selectors live here. When Amazon changes markup, fix this one file.src/tools/*— the five tools.src/index.ts— MCP wiring over stdio.
Known limitations
Order-history has no API; scraping breaks when Amazon changes HTML — update
parse.ts.CAPTCHA/OTP require a manual
npm run loginagain.Trend analysis derives from the order-list view (dates, totals, item titles), not deep per-item category data. Extend
get_order+trends.tsfor category-level analysis.
License
Released into the public domain under The Unlicense — the most
lenient option available. Do anything you like with it: copy, modify, sell,
redistribute, no attribution required, no warranty. See LICENSE.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/kausikram/amazon-in-marketplace-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server