Skip to main content
Glama
pangolinfo

Amazon All-in-One Scrape MCP

Official

scrape_url

Scrape Amazon pages that standard tools don't support. Provide a content fragment or a full URL with filters, sorting, and pagination to extract structured data.

Instructions

[Generic Amazon scrape — power-user escape hatch] Scrape pages the 5 purpose-built tools don't cover. Two input modes (pick one): ① content=bare fragment (keyword / nodeId / sellerId / ASIN) + site — backend builds a basic URL per parserName. content mode carries NO filter/sort/pagination — it's just the bare fragment. Best for simple pages when you only have the fragment. ② url=full Amazon link — put ANY filter/sort/pagination into this url (the only way, since content mode can't). Filter syntax examples: price $25-50 → '/s?k=earbuds&low-price=25&high-price=50'; sort by reviews → '&s=review-rank'; paginate → '&page=2'; category+price → '/s?i=aps&rh=n%3A172282&fs=true&low-price=25'. Use when: a standard tool can't build the target URL — "search X but only $25-50" / "results sorted by reviews" / "category filtered by price"; or the user already has a specific Amazon link. For any filtering, use url mode. Don't use: when a purpose-built tool fits — plain keyword search → search_amazon, single ASIN → get_amazon_product, seller → list_seller_products, category ranks → list_bestsellers/list_new_releases. Returns (format='json'): data.json[0].data.{ ... results[] ... }, shape depends on parserName. ⚠️ If content/url doesn't match parserName, the backend returns data.{ status_code, rawHtml, url } (unparsed). Pair with: ↓ feed asin into get_amazon_product / get_amazon_reviews. Cost: ~1 point/call, ~5s. ⚠️ Pass exactly one of content / url (both or neither errors); filtering/pagination requires url mode; parserName must match the page type.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
parserNameYesParser deciding how the backend extracts the page AND builds the URL from content. Must match the page type: amzKeyword=keyword search (content=keyword) / amzProductOfCategory=category (content=nodeId) / amzProductOfSeller=seller storefront (content=sellerId) / amzProductDetail=single product (content=ASIN) / amzBestSellers / amzNewReleases / amzReviewV2=reviews / amzFollowSeller=follow-seller / amzVariantAsin=variant.
contentNoBare fragment (backend builds the URL per parserName). Pass this OR url. Examples: 'wireless earbuds' (amzKeyword) / '172282' (nodeId for amzProductOfCategory) / 'ATVPDKIKX0DER' (sellerId for amzProductOfSeller) / 'B09B8V1LZ3' (ASIN for amzProductDetail). Users/AI usually only have the fragment — prefer this.
urlNoFull Amazon URL (https://). Pass this OR content. Use when you already have a ready link (e.g. a filtered/sorted SERP copied from the browser). Example: 'https://www.amazon.com/s?k=earbuds&rh=p_36%3A2500-5000&s=review-rank'. Must match parserName.
siteNoAmazon site (in content mode the backend picks the domain from this). Defaults to amz_us. Optional in url mode (the URL already has the domain).amz_us
formatNoResponse format. Defaults to 'json' (structured results). Use 'markdown' for the rendered page text.json
zipcodeNoZIP code matching the site's country. Optional; backend picks one if omitted.

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. Changed6 schema fields changedv0.7.3
    • changedInput schema / properties / content / description
      Previous value: -"裸零件(后端按 parserName 自动拼 URL)。传这个**或** url 二选一。Examples: 'wireless earbuds'(amzKeyword)/ '172282'(amzProductOfCategory 的 nodeId)/ 'ATVPDKIKX0DER'(amzProductOfSeller 的 sellerId)/ 'B09B8V1LZ3'(amzProductDetail 的 ASIN)。用户/AI 通常只有零件,优先用这个。"New value: +"Bare fragment (backend builds the URL per parserName). Pass this OR url. Examples: 'wireless earbuds' (amzKeyword) / '172282' (nodeId for amzProductOfCategory) / 'ATVPDKIKX0DER' (sellerId for amzProductOfSeller) / 'B09B8V1LZ3' (ASIN for amzProductDetail). Users/AI usually only have the fragment — prefer this."
    • changedInput schema / properties / format / description
      Previous value: -"返回格式。默认 'json'(结构化 results);需要原始页面阅读时切 'markdown'。"New value: +"Response format. Defaults to 'json' (structured results). Use 'markdown' for the rendered page text."
    • changedInput schema / properties / parserName / description
      Previous value: -"解析器名,决定后端怎么解析页面 + 怎么从 content 拼 URL。必须和页面类型匹配:amzKeyword=关键词搜索(content=关键词)/ amzProductOfCategory=类目商品(content=nodeId)/ amzProductOfSeller=卖家店铺(content=sellerId)/ amzProductDetail=单品(content=ASIN)/ amzBestSellers / amzNewReleases / amzReviewV2=评论 / amzFollowSeller=跟卖 / amzVariantAsin=变体。"New value: +"Parser deciding how the backend extracts the page AND builds the URL from content. Must match the page type: amzKeyword=keyword search (content=keyword) / amzProductOfCategory=category (content=nodeId) / amzProductOfSeller=seller storefront (content=sellerId) / amzProductDetail=single product (content=ASIN) / amzBestSellers / amzNewReleases / amzReviewV2=reviews / amzFollowSeller=follow-seller / amzVariantAsin=variant."
    • changedInput schema / properties / site / description
      Previous value: -"Amazon 站点(content 模式下后端据此选域名拼 URL)。默认 amz_us。url 模式下可省略(url 已含域名)。"New value: +"Amazon site (in content mode the backend picks the domain from this). Defaults to amz_us. Optional in url mode (the URL already has the domain)."
    • changedInput schema / properties / url / description
      Previous value: -"完整 Amazon URL(https://)。传这个**或** content 二选一。用于你已经有一个现成链接(如浏览器复制的带筛选/排序的搜索结果页)。Example: 'https://www.amazon.com/s?k=earbuds&rh=p_36%3A2500-5000&s=review-rank'。必须和 parserName 匹配。"New value: +"Full Amazon URL (https://). Pass this OR content. Use when you already have a ready link (e.g. a filtered/sorted SERP copied from the browser). Example: 'https://www.amazon.com/s?k=earbuds&rh=p_36%3A2500-5000&s=review-rank'. Must match parserName."
    • changedInput schema / properties / zipcode / description
      Previous value: -"邮编,必须匹配 site 所在国家。可选;不传时后端随机挑一个。"New value: +"ZIP code matching the site's country. Optional; backend picks one if omitted."
  2. Addedv0.7.2

TDQS

A5/5.0
Behavior5/5

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

Despite no annotations, the description discloses behavioral traits: input modes, that content mode carries no filter/sort/pagination, that exactly one of content/url must be provided, that parserName must match the page type, the return shape, error behavior when mismatch, cost (~1 point, ~5s), and pairing advice. This is thorough disclosure.

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 well-structured with sections (①②), bullet points, and clear warnings. Every sentence adds value; it is efficient and not verbose. The structure makes it easy to parse quickly.

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

Completeness5/5

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

Given the tool's complexity (6 parameters, 9 parserName options, two modes), the description covers all necessary aspects: input modes, limitations, prerequisites (parserName match), return shape, cost, pairing with other tools, and error behavior. No gaps are apparent.

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

Parameters5/5

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

Schema coverage is 100%, but the description adds significant meaning beyond the schema: it explains the two input modes with examples, when to use each, filter syntax examples for url, parserName mappings, optionality of site and zipcode, and default values. This far exceeds the schema's descriptions.

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 that this is a generic Amazon scrape for pages not covered by 5 purpose-built tools, and explicitly names those sibling tools. It distinguishes itself as a 'power-user escape hatch' with two input modes, making the purpose very specific and unambiguous.

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

Usage Guidelines5/5

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

The description provides explicit guidance on when to use each mode (content vs url), including filter/sort/pagination requirements, and explicitly states when not to use it (when a purpose-built tool fits), listing exact alternatives like search_amazon, get_amazon_product, etc. This is comprehensive.

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

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/pangolinfo/pangolinfo-mcp'

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