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.

AllMCPs on GitHub (opens in a new tab)
Launched onTiny Startupstinystartups.com
Explore
  • Browse servers
  • Best MCP servers
  • Categories
  • MCP clients
  • Agent prompts
  • Stack Builder
  • Compare servers
  • Random discovery New
  • Submit a server
  • Pricing & Boost Boost
Learn
  • Guides hub
  • What is MCP?
  • Install guide
  • Build an MCP server
  • Deploy an MCP server
  • Security guide
  • Troubleshooting
  • MCP for SEO & AEO
  • Protocol versioning
  • Transports: stdio vs HTTP
  • State of MCP (stats)
  • Blog & updates
Tools
  • All developer tools
  • Config generator
  • Config validator
  • Config auditor
  • MCP playground
  • Token calculator
  • OpenAPI β†’ MCP
  • Badge generator
For agents
  • REST API docs
  • Trust & traffic Live
  • Remote MCP server SSE β†— (opens in a new tab)
  • llms.txt β†— (opens in a new tab)
  • Catalog JSON β†— (opens in a new tab)
Company
  • About
  • Advertise Sponsor
  • Contact
  • 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 BuildlistLaunched on Tiny StartupsFeatured on ShowMeBestAIFeatured on ShowMeBestAIFind us on LaunchZoneFind us on LaunchZoneAllMCPs 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 BuildlistLaunched on Tiny StartupsFeatured on ShowMeBestAIFeatured on ShowMeBestAIFind us on LaunchZoneFind us on LaunchZone
Β© 2026 Jackalope Digital LLC. All rights reserved.
  1. Home
  2. πŸ›’ E-Commerce
  3. BuyWhere MCP Server
BuyWhere MCP Server logo
Health: ActiveRecent health check succeeded.Last checked 9/22/2026, 1:47:22 PM

BuyWhere MCP Server

User RatingsBe the first to rate and review this MCP server! 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 Repository1 GitHub StarsTotal stargazers on GitHub for the source repository (1 stars).Visit Website

Agent-native product catalog for AI shopping agents. 296M+ products, 28 countries.

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 β–Ύ

Client Config & Setup

Remote HTTP
Choose your client or environment
Target File:~/Library/Application Support/Claude/claude_desktop_config.json
claude_desktop_config.json
{
  "mcpServers": {
    "buywhere-mcp-server": {
      "url": "https://api.buywhere.ai"
    }
  }
}

πŸ’‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.

Install Directory Badge Claim listing AlternativesπŸ›’ More in E-Commerce

Documentation Overview

BuyWhere API

The product catalog API for AI agent commerce β€” search, compare, and track prices across 900,000+ merchants in the US and Southeast Asia.

Overview

BuyWhere is an agent-native product catalog API indexing 300M+ products from 900,000+ merchants across Singapore, Malaysia, Indonesia, Thailand, the Philippines, Vietnam, and the United States. It is purpose-built for AI shopping agents: BM25-ranked search, structured price comparison, deals discovery, and affiliate link tracking out of the box. The API is MCP-compatible and works with Claude Desktop, Cursor, LangChain, CrewAI, and any MCP-enabled AI client.

Quick Start

Get an API key at buywhere.ai/api-keys, then:

server.ts
export BUYWHERE_API_KEY="bw_live_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
export BUYWHERE_BASE_URL="https://api.buywhere.ai"

Search products across platforms

Terminal
curl -sS --get "$BUYWHERE_BASE_URL/v1/products" \
  -H "Authorization: Bearer $BUYWHERE_API_KEY" \
  --data-urlencode "q=wireless headphones" \
  --data-urlencode "limit=5"

Get a specific product by ID

Terminal
curl -sS "$BUYWHERE_BASE_URL/v1/products/78234" \
  -H "Authorization: Bearer $BUYWHERE_API_KEY"

Deals feed β€” biggest discounts right now

Terminal
curl -sS --get "$BUYWHERE_BASE_URL/v1/deals" \
  -H "Authorization: Bearer $BUYWHERE_API_KEY" \
  --data-urlencode "min_discount=20" \
  --data-urlencode "limit=10"

πŸ† Build With BuyWhere Challenge β€” Win $1,188 in API Credits

Build an AI agent using BuyWhere MCP tools and win API credits, featured placement, and a Built With BuyWhere badge.

Tools: search_products, get_product, compare_prices, find_deals, browse_categories, get_category_products, get_deals

Timeline: Submissions open through May 19, 2026

Enter the Challenge β†’ | Quick Start | MCP Setup

MCP Integration

BuyWhere is listed in the awesome-mcp-servers registry. Connect to Claude Desktop, Cursor, Windsurf, or any MCP-compatible AI client in seconds.

Install the MCP server:

Terminal
pip install httpx mcp
python /path/to/buywhere-api/mcp_server.py

Claude Desktop β€” add to ~/Library/Application Support/Claude/claude_desktop_config.json:

config.json
{
  "mcpServers": {
    "buywhere": {
      "command": "python",
      "args": ["/path/to/buywhere-api/mcp_server.py"],
      "env": {
        "BUYWHERE_API_KEY": "your_api_key_here",
        "BUYWHERE_API_URL": "https://api.buywhere.ai"
      }
    }
  }
}

Cursor β€” add to Cursor settings β†’ MCP servers using the same JSON config above.

Available MCP tools: search_products, get_product, compare_prices, get_deals, find_deals, browse_categories, get_category_products.

Documentation

ResourceDescription
API DocumentationFull endpoint reference, authentication, error codes
API ExamplesWorked examples for common agent use cases
Quickstart GuideFirst query in under 5 minutes
AI Agent Framework GuideLangChain, Claude, and GPT integration patterns for BuyWhere
Developer FAQCommon auth, search, category, and rate-limit fixes
Release Notes v1.0What shipped in the GA release
MCP SetupMCP server configuration for AI clients
API Healthcheck MonitorSynthetic monitoring for /v1/search and /v1/products

Catalog Coverage

RegionRetailers
SingaporeShopee SG, Lazada SG, Amazon SG, Carousell SG, Zalora SG, Qoo10 SG, Courts, Challenger, FairPrice / FairPrice Xtra, Watsons SG, Harvey Norman, Gain City, Popular, Don Don Donki, IKEA SG, Decathlon SG, Uniqlo SG, Sephora SG, and more
MalaysiaShopee MY, Lazada MY, Zalora MY, Watsons MY, Carousell MY
IndonesiaShopee ID, Tokopedia, Bukalapak, Zalora ID
ThailandShopee TH, Lazada TH, Central TH
PhilippinesShopee PH, Lazada PH, Zalora PH
VietnamShopee VN, Tiki, Sendo
United StatesAmazon US, Walmart, Target, Costco, Best Buy, Chewy, Wayfair, Etsy, Ulta, Zappos, REI, and more
AustraliaAmazon AU, Catch, Big W, Bunnings, Coles, Officeworks
Japan / KoreaRakuten, Amazon JP, Yodobashi, Daiso JP, Coupang (KR)

Semantic Search & Embeddings (BUY-76567 β€” 60-day plan)

BuyWhere uses hybrid search (BM25 keyword + vector cosine similarity via RRF) as the default search mode. Embeddings are built with Qwen3-Embedding-4B (1024-dim) via Flow AI, replacing the retired Gemini pipeline.

Model & Budget

ItemDetail
Modelflow-embed-1 (Qwen3-Embedding-4B, open weights, 1024-dim)
ProviderFlow AI (POST https://api.flowaiapi.com/v1/embeddings)
FailoverDeepInfra primary β†’ SiliconFlow (Flow routes automatically)
Cost$0.02/M tokens ($0.01 batch); one-off backfill ~$10; ongoing ~$20–26/mo
Budget$10 one-off + $25/month, hard cap enforced by Flow AI key

Schedule (28 Aug β†’ 27 Oct 2026)

PhaseDatesDeliverable
Decide & guardDays 0–7Pin model/dim, eval set, nightly backup to R2, write-access lock
Feature firstDays 8–21Hybrid as default mode in /v1/products/search and MCP search
BackfillDays 22–28One worker, hash-gated, checkpointed, hard cap = scope size
MatchingDays 29–45ANN candidates β†’ rule verification β†’ product_matches populated
MeasureDays 46–60Dashboard: coverage, vector-path share, p95, eval win rate, multi-merchant %

Kill Criteria (Day 60)

  • Hybrid doesn't beat keyword on the 200-query eval set β†’ switch off
  • Matching doesn't lift multi-merchant coverage β†’ keep vectors, pause matching

Key Rules

  • ALL embedding calls go through Flow AI only β€” never DeepInfra/Gemini/SiliconFlow directly
  • Scope = in-stock AND price > 0 products only (~8M of 115M total)
  • Only the embed worker may write to product_embeddings (write-access lock enforced)
  • Nightly pg_dump of product_embeddings β†’ R2 (30-day retention)
  • model_ver = 'flow-embed-1@1024' stamped on every vector

Rate Limits

TierKey PrefixLimitUse Case
Freebw_free_*60 req/minDevelopment and testing
Livebw_live_*600 req/minProduction
Partnerbw_partner_*UnlimitedData partners

Rate limit status is returned in response headers (X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset). On 429 Too Many Requests, use exponential backoff starting at 2 seconds.

Self-Hosted / Contributing

BuyWhere is a Python/FastAPI service backed by PostgreSQL and Redis, with platform-specific scrapers deployed as ECS Fargate tasks. The scraping pipeline handles 40+ platforms concurrently using distributed Redis locks, NDJSON normalization, and BM25-ranked search via PostgreSQL FTS5.

Architecture details: SCRAPING_ARCHITECTURE.md

bash
# Local development
docker-compose up
# API available at http://localhost:8000

License

Proprietary β€” Β© 2026 BuyWhere. All rights reserved.

Read the full README β†’View source on GitHub β†’

Related MCP Servers

View all in E-Commerce View all alternatives
  • Shoporacle logoShoporacle

    E-Commerce Intelligence MCP β€” 11 tools: price comparison, stock, reviews. 18 countries.

    πŸ›’ E-Commerce1 views
    Compare vs Shoporacle β†’
  • Beacon   verified Merchant index for AI shopping agents logoBeacon verified Merchant index for AI shopping agents

    Neutral verified-merchant index for AI shopping agents; regulated/alcohol-first; earned-trust only.

    πŸ›’ E-Commerce2 views
    Compare vs Beacon verified Merchant index for AI shopping agents β†’
  • S
    Store

    Custom metal-print storefront: catalog search, product details, shipping, reviews. Read-only.

    πŸ›’ E-Commerce0 views
    Compare vs Store β†’
  • Agent Signal logoAgent Signal

    Collective intelligence for AI shopping agents β€” product intel, deals, and more

    πŸ›’ E-Commerce1 views
    Compare vs Agent Signal β†’

Adoption & maintenance

Factual signals from GitHub, npm, and our automated checks β€” not a rating.

GitHub stars
1
Stargazers on the source repository.
npm downloads
553k
Package downloads in the last 30 days.
Last commit
8d ago
Most recent push to the default branch.
Directory activity
1 views
Config copies, upvotes, and views on AllMCPs.

Reviews

No reviews yet β€” be the first to share how this listing worked for you.

Frequently Asked Questions about BuyWhere MCP Server

BuyWhere MCP Server is a hosted MCP server. Add it as a remote server in your client's config: "mcpServers": { "buywhere-mcp-server": { "url": "https://api.buywhere.ai" } }

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 PreviewBuyWhere MCP Server AllMCPs Directory Badge
Markdown (GitHub README)
[![AllMCPs](https://allmcps.com/api/badge/buywhere-mcp-server?style=directory)](https://allmcps.com/mcp/buywhere-mcp-server)
HTML Embed
<a href="https://allmcps.com/mcp/buywhere-mcp-server"><img src="https://allmcps.com/api/badge/buywhere-mcp-server?style=directory" alt="BuyWhere MCP Server on AllMCPs" /></a>

Technical Specs & Signals

CategoryπŸ›’E-Commerce
More technical detailsExpand β–Ύ
TransportSSE (Remote)
Last updatedSep 16, 2026
10/12 checks healthy over the last 45d
Views1
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.
GitHub stars1
GitHub Star CountTotal stargazers on GitHub representing community popularity (1 stars).
Last commit8d ago
Last Repository CommitThe most recent commit or push recorded for this server's GitHub repository.Last commit on Sep 16, 2026
npm downloads553,511/mo
Monthly npm DownloadsAverage monthly package installs recorded from npm registry statistics.
41Quality signal: Fair Β· 41/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 ownership7/20
Documentation & tools16/30
Adoption & activity8/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.

Supply-chain signal

1 high-severity advisory on record for this package. Most advisories affect transitive dependencies and may not be exploitable in this server's actual usage β€” this is a directional signal, not a security audit.

Critical 1High 0Medium 0Low 1

Scanned 8/17/2026 via OSV.dev Β· https://api.buywhere.ai (PyPI)

β˜… Spotlight Slot

Feature Your MCP Server

Get maximum visibility for your server across our directory, search results, and detail pages.

Spotlight Your Server

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to unlock edit access and the Official badge β€” proof is checked automatically, then reviewed by our team.

Free dofollow backlink: add your website and place the AllMCPs badge on it β€” no claim needed. We detect it automatically and keep it verified as long as the badge 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 πŸ›’ E-Commerce β†’Best MCP servers for E-Commerce β†’Alternatives to BuyWhere MCP Server β†’Install in Claude DesktopInstall in CursorInstall in VS CodeSetup guides for all 13 MCP clients