Skip to main content
Glama
ChocoData-com

amazon-scraper-api

amazon-scraper-api-mcp

npm npm downloads license

MCP-сервер (Model Context Protocol) для Amazon Scraper API. Подключается к Claude Desktop, Cursor, Claude Code, Continue или любому другому AI-клиенту с поддержкой MCP. Предоставляет вашей модели актуальные данные о товарах Amazon в качестве инструмента для вызова.

Что это дает

"Найди мне самые высокооцененные беспроводные наушники дешевле $150 на amazon.com, а затем проверь, не дешевле ли они на amazon.de"

Это один запрос. Без MCP ваш ИИ не может открывать страницы Amazon (Amazon блокирует просмотр для LLM) и не имеет актуальной информации о ценах и наличии. С этим MCP-сервером он напрямую вызывает amazon_search + amazon_product и получает структурированные данные от Amazon Scraper API.

Related MCP server: Amazon Product Intelligence Agent

Доступные инструменты

Инструмент

Что он делает

Типичное использование

amazon_product

Получение одного товара по ASIN или URL

"получить цену + рейтинг для B09HN3Q81F"

amazon_search

Поиск по ключевым словам с сортировкой/фильтрацией

"топ 10 чугунных сковородок дешевле $50"

amazon_batch_create

Постановка в очередь до 1000 ASIN для асинхронного парсинга

"пропарсить все 500 товаров в моем каталоге, отправь вебхук по завершении"

amazon_batch_status

Проверка прогресса пакетной задачи

"какая часть пакета xyz уже готова?"

Каждый инструмент возвращает структурированный JSON: название, цена, рейтинг, количество отзывов, наличие, блок покупки (buybox), варианты, изображения, маркированные списки, категории, таблицы характеристик.

Бенчмарк (реальная эксплуатация, 04.2026)

Метрика

Значение

Медианная задержка (товар, США)

~2.6 с

Задержка P95

~6 с

Цена / 1,000 запросов

$0.50 фиксировано

Маркетплейсы

20+

Настройка Claude Desktop

Отредактируйте ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) или %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "amazon-scraper": {
      "command": "npx",
      "args": ["-y", "amazon-scraper-api-mcp"],
      "env": {
        "ASA_API_KEY": "asa_live_..."
      }
    }
  }
}

Перезапустите Claude Desktop. Инструменты появятся под иконкой MCP в окне чата.

Настройка Cursor

Настройки → MCPДобавить сервер:

  • Команда: npx -y amazon-scraper-api-mcp

  • Окружение: ASA_API_KEY=asa_live_...

Настройка Claude Code

claude mcp add amazon-scraper -- npx -y amazon-scraper-api-mcp
# then set ASA_API_KEY in the environment Claude Code runs in

Пример диалога (Claude Desktop)

Вы: Какая сейчас цена на AirPods Pro 3-го поколения на amazon.com?

Claude: [вызывает amazon_product с ASIN B09HN3Q81F]

AirPods Pro 3-го поколения сейчас стоят $199.00 на amazon.com, вместо $249.00 (скидка 20%). У них рейтинг 4.7 звезды на основе 58,214 отзывов, товар в наличии, продавец и отправитель Amazon.com с Prime.

Вы: Сравни это с немецким листингом Amazon.

Claude: [вызывает amazon_product с query=B09HN3Q81F, domain=de]

На amazon.de тот же товар стоит 229.00 EUR. По сегодняшнему курсу это около $245, что примерно на 23% дороже, чем цена в США. Немецкий листинг отправляется Amazon и доступен для доставки Prime.

Почему это лучше, чем обычный MCP для "просмотра веб-страниц"

Обычные инструменты браузера, пытающиеся загрузить amazon.com, обычно блокируются (проверка на робота) или выдают мобильную версию страницы. Этот сервер направляет каждый вызов через Amazon Scraper API, который:

  • Обнаруживает и повторяет попытки для страниц с роботами/CAPTCHA через эскалацию прокси-уровней

  • Возвращает структурированный JSON (типизированные поля), а не HTML-код

  • Поддерживает 20+ маркетплейсов с использованием резидентских IP-адресов, соответствующих стране

  • Обрабатывает пакеты (от сотен до тысяч ASIN) с доставкой через вебхуки

  • Имеет встроенную систему ограничения частоты запросов (backoff)

Обработка ошибок

Ошибки передаются модели как ошибки инструмента с полем code и подсказкой. Модель затем решает, повторить попытку или отказаться от подзадачи. Вам не нужно писать логику обработки ошибок самостоятельно.

Распространенные коды: INVALID_API_KEY, INSUFFICIENT_CREDITS, RATE_LIMITED, target_unreachable, amazon-robot-or-human, extraction_failed, SERVICE_OVERLOADED. Полная таблица: amazonscraperapi.com/docs/errors.

Получить API-ключ

app.amazonscraperapi.com. 1,000 бесплатных запросов при регистрации, кредитная карта не требуется. Этого достаточно, чтобы протестировать каждый инструмент, предоставляемый этим MCP, плюс несколько десятков продуктивных чатов.

Ссылки

Лицензия

MIT

Available Tools

4 tools
amazon_batch_createA

Queue up to 1000 ASINs or search queries for async processing. Returns a batch id - poll with amazon_batch_status or receive a webhook callback.

ParametersJSON Schema
NameRequiredDescriptionDefault
endpointYes
itemsYes
webhook_urlNoOptional HTTPS callback URL

TDQS

A3.5/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries full burden. It mentions async processing and result retrieval methods, but lacks details on side effects, auth, rate limits, or error handling. The description is insufficient for a tool with no structured behavioral hints.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, well-structured sentence that front-loads the purpose and includes key details (limit, result method). No extraneous words.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given missing annotations and output schema, the description covers main function and result retrieval. However, it lacks details on error handling, item validation, and batch id format. Adequate but with gaps.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 33%, only webhook_url has a description. The description adds context for items ('ASINs or search queries') but does not explain endpoint values or items structure beyond the schema. It partially compensates but not fully.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool queues up to 1000 ASINs or search queries for async processing and returns a batch id. It distinguishes from siblings like amazon_batch_status (poll), amazon_product, and amazon_search (single lookups).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies use for multiple items ('up to 1000 ASINs or search queries') and mentions polling or webhook, but does not explicitly state when to avoid this tool (e.g., for single queries) or contrast with siblings.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

amazon_batch_statusB

Poll an async batch job for progress + results.

ParametersJSON Schema
NameRequiredDescriptionDefault
idYes

TDQS

B3.4/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description must disclose behavioral traits. It indicates a read-only polling operation, but does not mention safety, rate limits, or whether it blocks or returns immediately. Adequate but minimal.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

A single sentence with no fluff, front-loaded with the action verb 'Poll'. Every word is necessary.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The description is adequate for a simple polling tool, but lacks context on return values (no output schema) and lifecycle (e.g., relationship to batch creation). More detail would improve completeness.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The only parameter 'id' has no description in the schema (0% coverage) and the description does not explain what it represents (e.g., the job ID from amazon_batch_create). The description fails to add meaning beyond the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb 'Poll' and resource 'async batch job', and specifies that it returns 'progress + results'. This clearly distinguishes it from sibling tools like amazon_batch_create (creation) and unrelated searches.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance is provided on when to use this tool versus alternatives, such as indicating that it should be called after creating a batch job with amazon_batch_create, or any prerequisites or polling behavior.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

amazon_productB

Fetch structured data for a single Amazon product by ASIN. Returns ~55 fields including title, price, variations, reviews, category ladder, images.

ParametersJSON Schema
NameRequiredDescriptionDefault
queryYes10-character Amazon ASIN, e.g. "B09HN3Q81F"
domainNoAmazon marketplace TLDcom
languageNoContent language xx_YY (e.g. en_US, de_DE). Not all combos supported per marketplace.

TDQS

B3.4/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations provided; description leaves burden on text. States return fields but omits idempotency, rate limits, authentication needs, or any side effects. For a fetch tool, read-only behavior is implied but not explicit.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Single sentence is efficient and front-loaded with action 'Fetch structured data'. No wasted words.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With 3 parameters and no output schema, description mentions ~55 fields and examples. Lacks error handling, response format, or data shape beyond field list.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema covers all parameters, description adds no extra meaning beyond 'by ASIN'. Baseline 3 applies due to full schema coverage.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Description clearly states verb 'Fetch', resource 'structured data for a single Amazon product', and identifier 'by ASIN'. Lists sample fields, distinguishing from sibling batch and search tools.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Implicitly for single product lookup by ASIN, but no explicit comparison with sibling tools (amazon_search, amazon_batch_*). Lacks when-not-to-use or alternative guidance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 4 tool updatesv0.1.5
    • First observedamazon_batch_create
    • First observedamazon_batch_status
    • First observedamazon_product
    • First observedamazon_search

TDQS

A3.8/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose: batch creation, batch status polling, single product fetch, and keyword search. No overlap between tools.

Naming Consistency4/5

All tools use snake_case and start with 'amazon_'. Three follow verb_noun pattern ('batch_create', 'batch_status', 'search'), while 'amazon_product' is a noun implying fetch. Minor inconsistency but overall predictable.

Tool Count5/5

Four tools cover the essential scraping operations: search, single product details, and async batch processing. The count is well-scoped for the server's purpose.

Completeness4/5

Covers search, single product, and batch processing. Missing dedicated review or category tools, but the product tool includes reviews. Minor gaps but core workflows are complete.

Maintenance

ActivityInactive
ResponsivenessSyncing

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • F
    license
    Not graded
    quality
    D
    maintenance
    An MCP server that enables large language models to directly access and analyze Amazon product information, including product details, variants, and reviews.
    -
  • A
    license
    Not graded
    quality
    D
    maintenance
    MCP server for scraping product prices, offers, reviews, and details from Amazon, Google Shopping, Bol.com, and Coolblue via natural language commands, with spend-cap protections.
    32
    1
    MIT
  • F
    license
    A
    quality
    C
    maintenance
    MCP server for tracking Amazon product prices via camelcamelcamel.com, using headless Chromium to bypass Cloudflare protection.
    3
    -

Latest Blog Posts

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/ChocoData-com/amazon-scraper-api-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server