keepa-mcp
This server provides MCP tools to access Amazon product data, price history, sales rank trends, best-seller lists, and deals via the Keepa API.
get_product – Fetch current product details for an ASIN: title, brand, category, current Amazon/new/buy-box prices, review count, rating, number of new offers, and latest sales rank.
get_price_history – Retrieve historical Amazon, new third-party, used, and buy-box price data over a specified time range (30 days, 6 months, 1 year, or all-time).
get_sales_rank_history – Get historical Best Seller Rank data and a demand trend summary (improving, worsening, or stable).
search_products – Search Amazon products by keyword, optionally filtered by Keepa category, returning matching ASINs.
get_best_sellers – Return the top-selling ASINs in a specified Keepa category.
get_deals – Find current price-drop deals, filterable by minimum drop percentage and minimum rating, with pagination.
Supports multiple Amazon marketplaces via a domain parameter. All tools are read-only and communicate only with the Keepa API.
Provides tools for retrieving Amazon product details, price and sales rank history, product search, best sellers, and current deals via the Keepa API.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@keepa-mcpWhat is the current Amazon price and rating for ASIN B08N5WRWNW?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
keepa-mcp
Amazon price and sales-rank history for your AI assistant, via the Keepa API.
Unofficial package. keepa-mcp is not affiliated with, endorsed by, or supported by Keepa GmbH. "Keepa" and "Amazon" are trademarks of their respective owners. This is an independent open-source client for the publicly documented Keepa API.
What it does
Tool | Description | Example prompt |
| Title, brand, category, current prices, buy box, review count and rating | "What is the current Amazon price and rating for ASIN B08N5WRWNW?" |
| Decoded price time series for Amazon, new, used, and buy-box prices | "Show me the price history for B08N5WRWNW over the past year" |
| Sales rank over time plus a demand trend summary | "Is demand trending up or down for B07PXGQC1Q?" |
| Keyword product search, returns matching ASINs | "Find ASINs for 'wireless earbuds' on Amazon" |
| Top ASINs in a Keepa category | "What are the best sellers in Electronics?" |
| Current price-drop deals filtered by drop % and rating | "Show deals with at least 30% off and 4.5 stars" |
Related MCP server: ShopSavvy Data API MCP Server
Quick start
Claude Desktop
Add to ~/Library/Application Support/Claude/claude_desktop_config.json
(macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"keepa": {
"command": "npx",
"args": ["-y", "keepa-mcp"],
"env": {
"KEEPA_API_KEY": "YOUR_API_KEY_HERE"
}
}
}
}Claude Code
claude mcp add keepa -e KEEPA_API_KEY=your_key -- npx -y keepa-mcpOpenAI Codex CLI
Add to ~/.codex/config.toml:
[mcp_servers.keepa]
command = "npx"
args = ["-y", "keepa-mcp"]
[mcp_servers.keepa.env]
KEEPA_API_KEY = "YOUR_API_KEY_HERE"Getting a Keepa API key
Sign up at https://keepa.com/#!api to get your API key.
The free tier provides 100 tokens per minute. Each product data request costs tokens proportional to the data retrieved (history length, number of offers, etc.). Typical product lookups cost 1-5 tokens; best-seller lists and deals cost more. See the Keepa API docs for the full token cost table.
Token economics at a glance:
get_product: ~2-4 tokens — the product record plus thestats,ratingandbuyboxadd-ons it needs. Keepa returns no current price, rating, review count or offer count without them.get_price_history/get_sales_rank_history: ~2-4 tokensget_best_sellers: 50-100 tokens per requestget_deals: 5-25 tokens per pageFree tier refills at 100 tokens/minute
Live offer data (offers) is not requested. It triggers a real-time
marketplace lookup costing 10+ extra tokens per call, which on a small bucket
can fail the request outright. Versions before 0.1.2 always sent offers=20,
so get_product never actually cost the 1 token this table used to claim.
If you hit the quota, the tool returns a clear error message and you can retry after the bucket refills.
Example conversations
1. Product research
"Look up B08N5WRWNW, then show me the last 6 months of price history and tell me whether demand has been growing."
The assistant calls get_product, then get_price_history with range="6m",
then get_sales_rank_history with range="6m", and synthesises a verdict.
2. Category opportunity scan
"Pull the top 20 best sellers in Electronics (category 172282), then get current details and sales rank trends for the first three."
The assistant calls get_best_sellers, then get_product and
get_sales_rank_history for the first three ASINs, and summarises
the demand signals.
3. Deal hunting
"Find highly-rated Amazon deals with at least 25% off, then show me the price history for the top result to confirm it is a genuine dip."
The assistant calls get_deals with min_price_drop_pct=25, min_rating=45,
picks the top ASIN, then calls get_price_history with range="6m" to
validate the claimed price drop against historical data.
Development
# Install dependencies
npm install
# Run tests (no live HTTP; all upstream calls are mocked)
npm test
# Build TypeScript to dist/
npm run build
# Start the server (requires KEEPA_API_KEY in environment)
KEEPA_API_KEY=your_key node dist/index.jsProject structure
src/
index.ts # Server entry point, tool registration
constants.ts # API base URL, Keepa time offset, limits
types.ts # TypeScript interfaces
services/
keepa-client.ts # Fetch wrapper, time utilities, history decoder
tools/
get-product.ts
get-price-history.ts
get-sales-rank-history.ts
search-products.ts
get-best-sellers.ts
get-deals.ts
tests/
keepa-client.test.ts # Unit tests for time conversion and history decoding
tools.test.ts # Integration tests with mocked fetch + fixture JSON
fixtures/ # Realistic Keepa response shapesBuilt by
Built by Puya Ventures LLC. I build custom MCP servers and AI integrations for product-research, e-commerce, and SaaS teams. Get in touch: purahmanian@gmail.com | Portfolio: puyarahmanian.com
Part of the Product-Research MCP Suite: keepa-mcp · google-trends-mcp · junglescout-mcp
Privacy
This server runs entirely on your machine. It collects no telemetry and stores no data. The only network calls it makes are to the Keepa API (api.keepa.com), sending your API key and the ASINs, keywords, or category ids you ask about. Your API key is read from the KEEPA_API_KEY environment variable and never written to disk or sent anywhere except Keepa. See Keepa's privacy policy: https://keepa.com/#!privacy
License
MIT. See LICENSE.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityCmaintenanceProvides conversational access to Keepa's product and sales data for product research, sales velocity analysis, inventory optimization, and competitive intelligence.116231MIT
- Alicense-qualityCmaintenanceProvides AI assistants with access to ShopSavvy's comprehensive product data, pricing information, and historical price tracking, enabling product lookup by barcode or ASIN, current offers, price history, and scheduling for automatic monitoring.558MIT
- Alicense-qualityDmaintenanceEnables AI agents to search products, manage cart, place orders, and track shipments on Amazon via browser automation.151MIT
- Flicense-qualityCmaintenanceEnables managing Amazon seller accounts directly from an AI assistant, with tools for listings, orders, pricing, inventory, and multi-marketplace switching.
Related MCP Connectors
Amazon brand, seller, niche & buy-box intelligence inside your own Claude or ChatGPT.
Real-time Amazon, WIPO & PACER data for AI agents — 19 tools via the MCP protocol.
Product and category demand signals across Amazon and social. Free key at trendsapi.ai
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/purahmanian/keepa-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server