# Amazon.in MCP Server (npm · amazon-in-mcp-server)

Search Amazon.in: cheapest in-stock, best-value picks, product details, Keepa price-history.

- Trust score: 66/100 (medium)
- Change this week: +24
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- npm · `amazon-in-mcp-server`: 66/100 (this document), [markdown](https://verifymcp.io/servers/justadityaraj-amazon-in-mcp-server/amazon-in-mcp-server.md), [page](https://verifymcp.io/servers/justadityaraj-amazon-in-mcp-server/amazon-in-mcp-server)

## Channel facts

- Registry: `npm`
- Package: `amazon-in-mcp-server`
- Version: `0.1.1`
- 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-08-03.

- **Supply Chain Security**: 86/100
  - No malware found by supply-chain analysis.
  - Only part of the dependency tree could be resolved (117 of 122), so this covers what we could see, not the whole tree.
  - No install/post-install scripts declared.
  - Only part of the dependency tree could be resolved (117 of 122), so this covers what we could see, not the whole tree.
- **Provenance & Transparency**: 45/100
  - Source repository is publicly reachable at the declared URL.
  - Provenance check failed: no build-provenance attestation is published.
  - Clear OSI-approved license (MIT).
  - Actively maintained (last published 22 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 62/100
  - AI-judged instruction clarity (excellent).
  - Context-footprint check failed: tool/resource definitions use about 860 tokens (~286/item across 3 items; 3 tools + 0 resources), over budget; trim descriptions and params.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 23/100
  - Stability observed for 7 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **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.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add justadityaraj-amazon-in-mcp-server -- npx -y amazon-in-mcp-server
```

### Codex

```bash
codex mcp add justadityaraj-amazon-in-mcp-server -- npx -y amazon-in-mcp-server
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "justadityaraj-amazon-in-mcp-server": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "amazon-in-mcp-server"
      ],
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add justadityaraj-amazon-in-mcp-server --command npx --arg -y --arg amazon-in-mcp-server
```

### Hermes

```yaml
mcp_servers:
  justadityaraj-amazon-in-mcp-server:
    command: "npx"
    args: ["-y", "amazon-in-mcp-server"]
```

### Other

```json
{
  "mcpServers": {
    "justadityaraj-amazon-in-mcp-server": {
      "command": "npx",
      "args": [
        "-y",
        "amazon-in-mcp-server"
      ]
    }
  }
}
```

## 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-08-03 (score 66, +1)

No change was recorded against any check on this day. Stability & Change Management went from 20 to 23. That category is still filling its 30-day observation window: 6 days of observed history at the previous scan, 7 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-08-02 (score 65, +47)

- [security regression] Provenance: unverified → fail
- [security improvement] Install scripts: unverified → pass
- [security improvement] Known CVEs: unverified → partial
- [security improvement] Malware scan: unverified → pass
- [functional regression] Tool coverage: 100 → unverified
- [functional improvement] Schema quality: unverified → excellent
- [functional improvement] License: unverified → pass
- [functional improvement] Stability: unverified → 0.20
- [functional improvement] MCP protocol: unverified → pass
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] Dependency health: unverified → partial
- [functional] First check of Schema quality: unverified
- [functional] Licence: MIT

### 2026-07-31 (score 18, −24)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-27 (score 42)

First indexed and scored.

## MCP tools (3)

### `search_amazon_in` (~424 tokens)

Search Amazon.in

Search amazon.in for products by keyword and return ranked listings.

This tool scrapes the public amazon.in search page (no API key needed). It returns a normalised list of results plus two convenience picks:
 \- cheapest_in_stock: lowest price among listings showing stock
 \- best_value: weighted score = rating × log10(reviews+10) / sqrt(price), requires >=10 reviews

Args:
  \- query (string, 2-200 chars): search keywords
  \- max_results (int, 1-20, default 5): number of listings to return
  \- include_sponsored (bool, default false): include ad listings

Returns: JSON with schema:
  {
    "query": string,
    "total_results": number,    // total listings parsed from the page (pre-slice)
    "returned": number,         // how many are in results[] after applying max_results
    "results": [
      {
        "asin": string,
        "title": string,
        "url": string,
        "image": string,
        "price_inr": number,
        "price_display": string,
        "mrp_inr": number,
        "rating": number,
        "review_count": number,
        "prime": boolean,
        "sponsored": boolean,
        "in_stock": boolean,
        "delivery": string,
        "price_history_url": string
      }
    ],
    "cheapest_in_stock": <SearchResultItem>,
    "best_value": <SearchResultItem>
  }

Error handling:
  \- "Amazon served a bot-check page" → wait 30-60s and retry
  \- "Failed to reach amazon.in" → transient network or throttling

Input parameters:

- `include_sponsored` (boolean): Include sponsored / ad listings. Defaults to false.
- `max_results` (integer): Maximum listings to return (1-20). Default 5.
- `query` (string, required): Keyword search query (e.g., 'bluetooth speaker under 2000')

### `get_product` (~290 tokens)

Get Amazon.in Product Detail

Fetch a single amazon.in product's details by ASIN or URL.

Scrapes the product page and returns price, MRP, discount %, rating, review count, availability, bullets, brand, seller, delivery info, and a Keepa price-history URL.

Args:
  \- asin_or_url (string): plain 10-char ASIN (e.g., "B0BDHWDR12") or any amazon.in product URL containing /dp/<ASIN>

Returns: JSON with schema:
  {
    "asin": string,
    "title": string,
    "url": string,
    "image": string,
    "price_inr": number,
    "price_display": string,
    "mrp_inr": number,
    "discount_percent": number,
    "rating": number,
    "review_count": number,
    "in_stock": boolean,
    "availability": string,
    "bullets": string[],
    "brand": string,
    "seller": string,
    "delivery": string,
    "price_history_url": string
  }

Error handling:
  \- "Could not extract ASIN" → input was not a valid ASIN or amazon.in URL
  \- "Bot-check page" → retry after a delay

Input parameters:

- `asin_or_url` (string, required): Amazon.in ASIN (10 chars) or any product URL containing /dp/<ASIN>

### `price_history_link` (~146 tokens)

Price History Link (Keepa)

Build a Keepa.com price-history URL for an amazon.in ASIN. No network call.

Keepa renders historical price charts in the browser using the format keepa.com/#!product/12-<ASIN>, where 12 is the amazon.in domain code. This tool is offline — just a deterministic URL builder.

Args:
  \- asin_or_url (string): plain ASIN or amazon.in URL containing /dp/<ASIN>

Returns: JSON
  {
    "asin": string,
    "price_history_url": string
  }

Input parameters:

- `asin_or_url` (string, required): ASIN or amazon.in URL — Keepa link is built for the amazon.in domain

## Diagnostics

Captured diagnostic sections: Provenance, Dependencies. The full working is on the page: https://verifymcp.io/servers/justadityaraj-amazon-in-mcp-server/amazon-in-mcp-server#diagnostics

## Score history

- 2026-08-03: 66
- 2026-08-02: 65
- 2026-08-01: 18
- 2026-07-31: 18
- 2026-07-30: 42
- 2026-07-28: 42
- 2026-07-27: 42

## Links

- npm package: https://www.npmjs.com/package/amazon-in-mcp-server
- Socket report: https://socket.dev/npm/package/amazon-in-mcp-server
- Repository: https://github.com/justadityaraj/amazon-in-mcp
- Changelog RSS feed: https://verifymcp.io/servers/justadityaraj-amazon-in-mcp-server/amazon-in-mcp-server/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/justadityaraj-amazon-in-mcp-server/amazon-in-mcp-server/changelog.json
- HTML version of this page: https://verifymcp.io/servers/justadityaraj-amazon-in-mcp-server/amazon-in-mcp-server
