Amazon All-in-One Scrape MCP
OfficialThe Amazon All-in-One Scrape MCP server provides 18 tools for AI assistants to perform comprehensive Amazon e-commerce research, IP data lookups, and market intelligence via natural language.
Amazon Product & Search
search_amazon: Keyword searches across 13 Amazon marketplaces (ASIN, price, ratings, sales, etc.)get_amazon_product: Full product listing data for a single ASIN (title, bullets, reviews, variants, AI summary)get_amazon_reviews: Batch-scrape buyer reviews with filters for star rating, sort order, and media typescrape_url: Power-user escape hatch to scrape any Amazon URL with custom filters and pagination
Rankings & Seller Research
list_bestsellers: Top-50 Best Sellers for any category with 24-hour rank change datalist_new_releases: Top-50 newest products (listed within 30 days) for any categorylist_seller_products: All products in a seller's storefront by merchant IDlist_category_products: All products under a specific Amazon Browse Node ID
Category Navigation & Niche Discovery
search_categories: Find Amazon category nodes by keywordget_category_children: Drill down the Amazon category tree level by levelget_category_paths: Resolve category IDs into full breadcrumb pathsfilter_categories: Screen categories by 30+ business metrics (sales, search volume, conversion rate, return rate, etc.)filter_niches: Discover blue-ocean niches using 50+ filters (competition, growth rate, brand age, launch trends, etc.)
AI-Powered Search & Trends
ai_search: Google SERP results including AI Overview summaries, organic results, and related searcheskeyword_trends: Compare up to 5 keywords via Google Trends โ time series, regional interest, and breakout queriessearch_amazon_alexa: Query Amazon's Rufus AI shopping assistant with natural language for structured product recommendations
IP & Trademark Clearance
wipo_search: Search WIPO global design/trademark databases for IP risk clearance; optionally join US patent litigation (PACER) data viaenableLitigation=true
Local Business Research
search_local_maps: Find local businesses via Google Maps by location coordinates
Free Utility
pangolinfo_capabilities: Free local introspection tool returning the full tool catalog, recommended workflows, and usage tips at zero API cost
Provides tools for Amazon e-commerce data: keyword search, product details, reviews, bestsellers, new releases, category navigation, niche discovery, and seller catalog queries.
Provides tools for Google AI Search (overview answers) and Google Trends (interest over time data).
Provides a tool for Google Maps local business search.
pangolinfo-mcp
Pangolinfo MCP server โ 18 Amazon e-commerce & IP data tools for AI assistants via Model Context Protocol.
๐ Official site: www.pangolinfo.com
Plug your favorite AI client (Claude Code, Cursor, Cline, Windsurf, Codex, Hermes, OpenClaw) into Pangolinfo's Amazon scrape APIs and let the AI run keyword research, listing analysis, review mining, niche discovery, category navigation, AI search lookups, keyword-trend checks, and WIPO trademark clearance โ all from natural-language instructions.
โ ๏ธ BREAKING CHANGE in 0.7.0 โ
pacer_searchretired, merged intowipo_searchThe standalone
pacer_searchtool was removed. US patent-litigation (PACER) lookups are now reached by passingenableLitigation=truetowipo_searchโ it finds the patent and joins the related US litigation cases in a single call. Prompts/scripts pinningpacer_searchwill getToolNotFound; switch towipo_searchwithenableLitigation.
Old name (โค 0.2.x)
New name (0.3.0+)
google_ai_search
ai_search
google_trends
keyword_trendsTool names changed to remove third-party brand references from the public MCP interface. Tool parameters, return shape, and pricing are unchanged.
Version |
|
Tools | 18 business tools (+ a free local |
Transport | stdio (local) ยท streamable HTTP (hosted โ see below) |
Runtime | Node.js 18+ |
License | MIT |
Get an API key |
Install
Recommended: one-line installer (covers 7 AI clients)
The Pangolinfo Installer detects your AI client, writes the right config files, and you're done. Pass --scope=mcp to install only this MCP server (skip the Skills package).
macOS / Linux
curl -fsSL https://pangolinfo.dev/install.sh | sh -s -- \
--agent=<your-agent> \
--scope=mcp \
--api-key=pgl_xxxxxxxxxxxxWindows (PowerShell)
irm https://pangolinfo.dev/install.ps1 | iex; `
Install-Pangolinfo -Agent <your-agent> -Scope mcp -ApiKey pgl_xxxxxxxxxxxx<your-agent> is one of: claude-code, cursor, cline, windsurf, codex, hermes, openclaw.
After the installer finishes, restart your AI client so it picks up the new mcpServers entry.
Manual install (just download one file)
The release artifact is a single self-contained server.mjs (~800 KB) โ all dependencies are bundled in. No npm install needed.
# macOS / Linux
mkdir -p ~/.local/lib/pangolinfo-mcp
curl -fsSL https://github.com/pangolinfo/pangolinfo-mcp/releases/latest/download/server.mjs \
-o ~/.local/lib/pangolinfo-mcp/server.mjs
chmod +x ~/.local/lib/pangolinfo-mcp/server.mjs# Windows (PowerShell)
$dir = "$env:LOCALAPPDATA\pangolinfo-mcp"
New-Item -ItemType Directory -Force -Path $dir | Out-Null
irm https://github.com/pangolinfo/pangolinfo-mcp/releases/latest/download/server.mjs `
-OutFile "$dir\server.mjs"Then wire it into your AI client โ see the per-client snippets below. Point args at the file you just downloaded.
Developers: to build from source,
git clonethis repo and runnpm install && npm run build. The produceddist/server.mjsis identical to the release asset.
Related MCP server: agentcentral
Get an API key
Sign up at https://tool.pangolinfo.com/
Copy your
pgl_xxxxxxxxkey from the dashboardTop up credits if needed (each Amazon scrape call costs 0.75 credits;
pangolinfo_capabilitiesis free)
Manual configuration (per AI client)
Replace /abs/path/to/pangolinfo-mcp/dist/server.mjs with your real path, and pgl_xxxxxxxx with your key.
Claude Code (~/.claude/settings.json)
{
"mcpServers": {
"pangolinfo": {
"command": "node",
"args": ["/abs/path/to/pangolinfo-mcp/dist/server.mjs"],
"env": { "PANGOLINFO_API_KEY": "pgl_xxxxxxxx" }
}
}
}Prefer
claude mcp add --scope user pangolinfo node /abs/path/to/dist/server.mjsโ it writes the same entry without hand-editing JSON.
Cursor (~/.cursor/mcp.json)
{
"mcpServers": {
"pangolinfo": {
"command": "node",
"args": ["/abs/path/to/pangolinfo-mcp/dist/server.mjs"],
"env": { "PANGOLINFO_API_KEY": "pgl_xxxxxxxx" }
}
}
}Cline (VS Code extension)
Open Cline โ MCP Servers โ Edit settings JSON, then add:
{
"mcpServers": {
"pangolinfo": {
"command": "node",
"args": ["/abs/path/to/pangolinfo-mcp/dist/server.mjs"],
"env": { "PANGOLINFO_API_KEY": "pgl_xxxxxxxx" }
}
}
}The settings file lives at <vscode-user>/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json.
If you're on the standalone Cline CLI, use ~/.cline/data/settings/cline_mcp_settings.json instead.
Windsurf (~/.codeium/windsurf/mcp_config.json)
{
"mcpServers": {
"pangolinfo": {
"command": "node",
"args": ["/abs/path/to/pangolinfo-mcp/dist/server.mjs"],
"env": { "PANGOLINFO_API_KEY": "pgl_xxxxxxxx" }
}
}
}Codex (~/.codex/config.toml)
[mcp_servers.pangolinfo]
command = "node"
args = ["/abs/path/to/pangolinfo-mcp/dist/server.mjs"]
[mcp_servers.pangolinfo.env]
PANGOLINFO_API_KEY = "pgl_xxxxxxxx"Hermes (~/.hermes/config.yaml)
mcp_servers:
pangolinfo:
command: node
args: ["/abs/path/to/pangolinfo-mcp/dist/server.mjs"]
env:
PANGOLINFO_API_KEY: pgl_xxxxxxxxOpenClaw (~/.openclaw/openclaw.json)
{
"mcpServers": {
"pangolinfo": {
"command": "node",
"args": ["/abs/path/to/pangolinfo-mcp/dist/server.mjs"],
"env": { "PANGOLINFO_API_KEY": "pgl_xxxxxxxx" }
}
}
}Hosted (remote HTTP) โ no local install
Don't want to install anything? Point your AI client at the hosted endpoint
instead of a local server.mjs. This is the streamable HTTP transport
(MCP spec), multi-tenant โ you bring your own key on every request.
Endpoint |
|
Transport | Streamable HTTP (POST + SSE) |
Auth | Your |
Passing your API key โ two ways
1. Authorization header (recommended)
Authorization: Bearer pgl_xxxxxxxxThis is the preferred method: the key stays out of URLs, logs, and browser
history. The Bearer scheme is matched case-insensitively (bearer,
BEARER, Bearer all work) and extra whitespace is tolerated.
2. ?api_key= URL query (fallback)
https://mcp.pangolinfo.com/mcp?api_key=pgl_xxxxxxxxEasiest for clients that only let you paste a URL. If your key contains URL-special characters, URL-encode it. The header (method 1) takes precedence if both are supplied.
Client config example (Claude Code / Cursor โ "url"-style remote MCP)
{
"mcpServers": {
"pangolinfo": {
"url": "https://mcp.pangolinfo.com/mcp",
"headers": { "Authorization": "Bearer pgl_xxxxxxxx" }
}
}
}If your client can't set headers, fall back to the URL form:
"url": "https://mcp.pangolinfo.com/mcp?api_key=pgl_xxxxxxxx".
Notes for custom / raw HTTP integrations
If you're calling the endpoint directly (not through a standard MCP client):
POST your JSON-RPC body to
/mcp.The MCP streamable transport normally requires the request to advertise both
application/jsonandtext/event-streamin itsAcceptheader. This server backfills the missing media type for you, so a plainAccept: application/json,Accept: */*, or even a missingAcceptheader all work โ you don't need to hand-craft it.A
401means the key was not found in either the header or the query string โ check that your client actually sent it (some libraries drop theAuthorizationheader on cross-origin redirects).
Tools (18)
See MCP-TOOLS-MAP.md for the full coordination graph (which tools chain into which).
# | Tool | Purpose | Cost (credits) |
1 |
| Amazon keyword search โ structured product list | 0.75 |
2 |
| Single-ASIN listing detail (title / bullets / features / aiReviewsSummary) | 0.75 |
3 |
| Batch reviews for an ASIN (VOC mining) | 0.75 |
4 |
| Amazon Bestsellers by category | 0.75 |
5 |
| Amazon New Releases by category | 0.75 |
6 |
| Catalog of products under one seller | 0.75 |
7 |
| All products in a category leaf | 0.75 |
8 |
| Search Amazon category tree by keyword | 0.75 |
9 |
| Drill down one level in the category tree | 0.75 |
10 |
| Filter category nodes by criteria | 0.75 |
11 |
| Niche discovery (size ร competition ร growth) | 0.75 |
12 |
| Resolve full ancestor paths for a category node | 0.75 |
13 |
| Google Maps local business search | 0.75 |
14 |
| WIPO global design / trademark search (IP clearance). Set | 2 (+12 when |
15 |
| AI Search via Google SERP (AI Overview + organic, with compliance disclaimer) | 2 |
16 |
| Keyword Trends via Google Trends (with compliance disclaimer) | 1.5 |
17 |
| Power-user escape hatch: scrape a raw Amazon URL + parserName (non-standard pages) | 0.75 |
18 |
| Amazon Rufus AI conversational product picks (scene-based, no keyword) | 6 |
Plus a free local call:
pangolinfo_capabilitiesreturns the full tool catalog, canonical workflows, and usage tips with no backend round-trip (0 credits). It is a self-introspection helper, not one of the 18 data tools.
Default marketplace is Amazon US (marketplaceId=ATVPDKIKX0DER, zip=90001). Override per call via tool arguments.
Auth resolution order
The server resolves the API key with this priority:
CLI args:
--api-key=pgl_xxx --api-base=... --scrape-base=...Env vars:
PANGOLINFO_API_KEY,PANGOLINFO_API_BASE,PANGOLINFO_SCRAPE_BASEConfig file at
~/.pangolinfo/config.json:{ "api_key": "pgl_xxxxxxxxxxxx", "api_base": "https://extapi.pangolinfo.com", "scrape_base": "https://scrapeapi.pangolinfo.com" }Missing key โ startup failure with an actionable error.
CLI args win over env vars โ convenient when you want per-server keys without polluting the global environment.
Internationalization
Tool descriptions and error hints are available in English and Chinese. The
language is resolved in this order: --lang=zh|en โ PANGOLINFO_LANG=zh|en โ OS locale
($LANG starting with zh* โ Chinese, otherwise English) โ English when there is no
locale signal at all. So a Chinese-locale machine gets Chinese automatically; everyone
else gets English. Force a language explicitly:
"env": {
"PANGOLINFO_API_KEY": "pgl_xxxxxxxx",
"PANGOLINFO_LANG": "zh"
}Startup logs are always English (operator-facing); tool descriptions and error hint fields follow the resolved locale.
Verify your install
After restarting your AI client, ask it:
List all available
pangolinfoMCP tools.
You should see 18 tools. Then try:
Use
pangolinfo_capabilitieswith mode "summary".
This is a free local call โ if it returns the tool catalog, your install is wired correctly. Next, run something paid like:
Search Amazon for "wireless mouse" and return the top 5 results.
Expected: ~0.75 credits deducted, ~300 KB of structured product data returned.
Development
npm install
npm run dev # tsx src/server.ts โ hot-reload
npm run build # esbuild โ dist/server.mjs
npm run typecheck # tsc --noEmit
npm start # node dist/server.mjsProject layout
src/
โโโ server.ts MCP stdio entry + tool registration
โโโ auth.ts API key resolution (CLI > env > config file)
โโโ client.ts HTTP client (Authorization, User-Agent)
โโโ errors.ts PangolinfoError + status-code mapping
โโโ config.ts Default endpoints / constants
โโโ i18n.ts zh/en translation lookup
โโโ tools/
โโโ _types.ts Tool / ToolContext type definitions
โโโ index.ts Tool registry (18 tools + capabilities)
โโโ <verb_noun>.ts One file per toolAdding a new tool
Create
src/tools/<verb_noun>.tsexporting aToolobject โ mirrorsearch_amazon.ts.Import it in
src/tools/index.tsand append to thetoolsarray.Schema is
zod;.describe()every field โ the AI reads those.Never call
fetchdirectly โ usectx.client.post(...). Auth is already injected.Throw
PangolinfoErroron failure; the HTTP client already throws this for non-2xx responses.
Security & Data Handling
We take operator and user safety seriously. By design, this MCP server:
Brings your own key. Authentication is via your personal
PANGOLINFO_API_KEY(issued at https://tool.pangolinfo.com/). The key is read locally from your AI client's config or environment โ it is never transmitted anywhere except tohttps://scrapeapi.pangolinfo.com(orhttps://mcp.pangolinfo.comfor the hosted variant) over TLS 1.2+.No telemetry. This server does not phone home, does not collect usage analytics, and does not log your prompts. The only outbound traffic is the actual Amazon / Google / WIPO scrape API calls you explicitly invoke through tools.
No PII collection. No user account info, no email, no IP geolocation, and no prompt content is persisted by this server. Tool calls forward only the parameters you (or the AI agent) supplied.
Read-only. Every tool is a strictly read-only data lookup. None of them can write to Amazon, place orders, post reviews, modify listings, or take any side-effecting action on third-party platforms.
HTTPS-only transport. Both the stdio variant (local) and the hosted variant (
https://mcp.pangolinfo.com/mcp) require HTTPS; HTTP requests are refused.Open source. The full source is in this repository under MIT license โ anyone can audit what the server sends and where.
Responsible use. Pangolinfo APIs aggregate public e-commerce data. You are responsible for using the returned data in compliance with the terms of service of the underlying platforms (Amazon, Google, etc.) and with applicable laws in your jurisdiction.
Report security issues privately to security@pangolinfo.com โ please do not file public GitHub issues for vulnerabilities.
Support
API docs: https://docs.pangolinfo.com
Email: support@pangolinfo.com
License
MIT ยฉ Pangolinfo
Maintenance
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