Skip to main content
AllMCPs
BrowseBestCategoriesStackCompareToolsGuidesBlog Log in Submit MCP

Stay in the loop

Get new MCP servers and top picks in your inbox.

AllMCPs

The open directory for discovering and installing Model Context Protocol servers.

Explore

  • Browse servers
  • Best MCP servers
  • Categories
  • MCP clients
  • Agent prompts
  • Stack Builder
  • Compare servers
  • Tags index
  • Submit a server
  • Pricing

Learn

  • Guides hub
  • What is MCP?
  • Install guide
  • Troubleshooting
  • Security
  • Blog
  • Blog RSS

Tools

  • All tools
  • Config generator
  • Config validator
  • MCP playground
  • OpenAPI β†’ MCP
  • Badge generator

For agents

  • API docs
  • Trust & traffic
  • llms.txt β†— (opens in a new tab)
  • Catalog JSON β†— (opens in a new tab)
  • Remote MCP β†— (opens in a new tab)

Company

  • About
  • Contact
  • X (@AllMCPs) β†— (opens in a new tab)
  • GitHub β†— (opens in a new tab)
  • Terms
  • Privacy
AllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistAllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on Buildlist
Β© 2026 Jackalope Digital LLC. All rights reserved.
  1. Home
  2. πŸ’» Developer Tools
  3. Pangolinfo Amazon Data MCP
P
Health: Not checked yetWe have not completed a health check for this listing yet.Last checked 8/11/2026, 12:10:11 AM

Pangolinfo Amazon Data MCP

Enrichment pendingWe haven’t run our AI enrichment pass on this listing yet, so the overview, use cases, and FAQ below may be sparse or missing. We work through the catalog over time β€” check back soon.
View RepositoryVisit Website

Real-time Amazon, WIPO & PACER data for AI agents β€” 19 tools via the MCP protocol.

Quick Install

Automated & IDE Setup

Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β€” or use 1-click editor setup below.

Add to CursorAdd to VS Code
Manual Client & Custom JSON ConfigExpand JSON β–Ύ

Install Config Generator

Choose your client
claude_desktop_config.json
{
  "mcpServers": {
    "pangolinfo-amazon-data-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "pangolinfo-amazon-data-mcp"
      ]
    }
  }
}

πŸ’‘ Paste into ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

Install Directory Badge Claim listing AlternativesπŸ’» More in Developer Tools

Documentation Overview

pangolinfo-mcp

Python client for the Pangolinfo Amazon Data MCP server β€” 19 Amazon / WIPO / PACER data tools callable from Python, no AI client required.

Built and maintained by PANGOLIN INFO TECH PTE. LTD.

Why this package

The Amazon Data MCP gives AI agents 19 data tools via the MCP protocol. This package lets Python developers call those same tools from code β€” no Claude, Cursor, or any AI client needed.

  • 19 tools in one client: Amazon product, reviews, search, niches, bestsellers, AI SERP, WIPO, PACER and more
  • Zero dependencies beyond httpx β€” no MCP SDK required
  • Sync interface (async coming soon)
  • Same engine, same pricing as the REST API and MCP server

Installation

Terminal
pip install pangolinfo-mcp

Quick start

1. Get a permanent API key

Sign up at tool.pangolinfo.com and grab a permanent API key from Account Center.

2. Use the client

server.ts
from pangolinfo_mcp import PangolinfoMCPClient

client = PangolinfoMCPClient(api_key="your_permanent_api_key")

# Amazon product detail
product = client.get_amazon_product("B0DYTF8L2W")
print(product["title"])

# Keyword search
results = client.search_amazon("wireless earbuds")

# Best sellers in a category
bestsellers = client.list_bestsellers(category_id="172282")

# WIPO trademark check
trademarks = client.wipo_search("Nike")

# PACER patent litigation
cases = client.pacer_search("Apple Inc.")

# List all available tools
tools = client.list_tools()

client.close()

Context manager

python
with PangolinfoMCPClient(api_key="your_key") as client:
    product = client.get_amazon_product("B0DYTF8L2W")

All 19 tools

Amazon Core Data (5)

MethodDescription
client.search_amazon(keyword)Search Amazon products
client.get_amazon_product(asin)Full product detail
client.get_amazon_reviews(asin)Paginated reviews
client.list_seller_products(seller_id)Seller storefront
client.scrape_url(url)Scrape any Amazon page

Category & Niche Analysis (8)

MethodDescription
client.filter_niches(**metrics)Blue-ocean niche discovery
client.filter_categories(**metrics)Category filtering
client.search_categories(query)Full-text category search
client.get_category_children(node_id)Browse node children
client.get_category_tree()Root category tree
client.batch_category_paths(category_ids)Batch category paths
client.list_bestsellers(category_id)Best Sellers list
client.list_new_releases(category_id)New Releases list

Search & SERP AI (3)

MethodDescription
client.ai_search(query)AI Overview / AI Mode SERP
client.keyword_trends(keyword)Keyword trend time-series
client.search_amazon_alexa(query)Alexa for Shopping

Maps & IP Compliance (3)

MethodDescription
client.search_local_maps(query)Maps POI data
client.wipo_search(keyword)WIPO trademark search
client.pacer_search(query)PACER patent litigation

Utility (1)

MethodDescription
client.capabilities()List all live tools (free)

Generic tool call

python
# Call any tool by name
result = client.call_tool("search_amazon", {"keyword": "laptop", "page": 2})

Use as an MCP server

This repo also documents the hosted MCP server that any MCP-compatible client (Claude Desktop, Cursor, VS Code, etc.) can connect to directly over Streamable HTTP β€” no local install required.

Add to your client's mcp.json / MCP config:

config.json
{
  "mcpServers": {
    "pangolinfo": {
      "url": "https://mcp.pangolinfo.com/mcp",
      "headers": {
        "Authorization": "Bearer pgl_your_api_key"
      }
    }
  }
}

Or pass the key inline as a query parameter:

Code
https://mcp.pangolinfo.com/mcp?api_key=pgl_your_api_key

Get a permanent API key at tool.pangolinfo.com. The key is sent as a Bearer token; config is not hot-reloaded, so restart/reconnect the client after changing it.

Links

  • MCP product page: pangolinfo.com/amazon-data-mcp
  • Documentation: docs.pangolinfo.com
  • Get a free API key: tool.pangolinfo.com
  • Source code: github.com/Pangolin-spg/pangolinfo-mcp

License

MIT β€” Β© PANGOLIN INFO TECH PTE. LTD.

Related MCP Servers

View all in Developer Tools View all alternatives
  • T
    ToolPipe MCP Server

    120+ developer utility tools for AI agents via Model Context Protocol

    πŸ’» Developer Tools0 views
    Compare vs ToolPipe MCP Server β†’
  • Blockscout Mcp Server logoBlockscout Mcp Server

    Provide AI agents and automation tools with contextual access to blockchain data including balance…

    πŸ’» Developer Tools0 views
    Compare vs Blockscout Mcp Server β†’
  • Mcp Server logoMcp Server

    MCP Server for ThoughtSpot - provides OAuth authentication and tools for querying data

    πŸ’» Developer Tools0 views
    Compare vs Mcp Server β†’
  • World Monitor logoWorld Monitor

    Live global intelligence: real-time markets, conflicts, country risk, chokepoints, energy. 39 tools.

    πŸ’» Developer Tools1 views
    Compare vs World Monitor β†’

Frequently Asked Questions about Pangolinfo Amazon Data MCP

Add the following block to your claude_desktop_config.json under mcpServers: "mcpServers": { "pangolinfo-amazon-data-mcp": { "command": "npx", "args": ["-y", "Pangolinfo Amazon Data MCP"] } }

AllMCPs Directory Badge

Full Badge Customizer

Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.

Badge Style:
Live Dynamic SVG PreviewPangolinfo Amazon Data MCP AllMCPs Directory Badge
Markdown (GitHub README)
[![AllMCPs](https://allmcps.com/api/badge/pangolinfo-amazon-data-mcp?style=directory)](https://allmcps.com/mcp/pangolinfo-amazon-data-mcp)
HTML Embed
<a href="https://allmcps.com/mcp/pangolinfo-amazon-data-mcp"><img src="https://allmcps.com/api/badge/pangolinfo-amazon-data-mcp?style=directory" alt="Pangolinfo Amazon Data MCP on AllMCPs" /></a>

Technical Specs & Signals

CategoryπŸ’»Developer Tools
More technical detailsExpand β–Ύ
TransportSTDIO
RuntimeNode.js
0/4 checks healthy over the last 6h
Views0
Unique ViewsTotal visits recorded for this listing page on AllMCPs.
Installs0
Installs & Copy ActionsTotal times users copied install commands or configuration snippets for this server.
27Quality signal: Emerging Β· 27/100How this signal is calculated β–Ύ
Server availabilityNot measured

Not scored for repo-hosted servers β€” we can't reach the running server, only its GitHub page. Hosted MCP endpoints are health-checked live.

Verified ownership8/20
Documentation & tools11/30
Adoption & activity1/15
Community engagement0/10

A guidance signal from public completeness & health data β€” not a user rating. New listings start lower and rise as they add docs, get verified, and grow adoption. Signals we can't observe for a listing are skipped, not counted against it.

β˜… FeaturedAllMCPs Server logo

AllMCPs Server

The official MCP server for AllMCPs.com - submit and manage tools directly from your AI. The open directory for MCP servers. Connect Claude, Cursor, Windsurf, and AI agents to databases, tools, files, and APIs. Explore 3,181+ servers. AllMCPs is the premier, open directory for discovering, evaluating, and installing Model Context Protocol (MCP) servers to equip AI agents and LLMs with real-world superpowers.

Explore Server β†’

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to get the verified badge.

Free dofollow backlink: after claiming, verify your product site and place a dofollow AllMCPs badge β€” we recheck it stays live.

Claim & get free dofollow

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.

Explore more

More in πŸ’» Developer Tools β†’Best MCP servers for Developers β†’Alternatives to Pangolinfo Amazon Data MCP β†’Install in Claude DesktopInstall in CursorInstall in VS Code