DEV Community

BuyWhere
BuyWhere

Posted on • Originally published at github.com

BuyWhere MCP: Product Search for AI Agents — Now on GitHub v1.0.0

BuyWhere is a product data API that gives AI agents access to real-time product search, pricing, and deals across Singapore, SEA, and US marketplaces.

We just published v1.0.0 of @buywhere/mcp-server — an MCP (Model Context Protocol) server that lets any MCP-compatible agent search and compare products from our catalog.

What is MCP?

MCP (Model Context Protocol) is an open standard that lets AI agents — Claude Desktop, Cursor, Windsurf, and others — connect to external tools and data sources. Think of it as USB-C for AI agents.

Tools

The server exposes four tools:

  • search_products — Search by keyword with filters for marketplace, category, and country
  • get_product — Get detailed product info including prices, ratings, and marketplace listings
  • find_best_price — Find the best available price across marketplaces
  • get_deals — Get current deals and promotions

Quick Setup

Add this to your MCP config:

{
  "mcpServers": {
    "buywhere": {
      "command": "npx",
      "args": ["-y", "@buywhere/mcp-server"],
      "env": {
        "BUYWHERE_API_KEY": "your-key-here"
      }
    }
  }
}
Enter fullscreen mode Exit fullscreen mode

Get a free API key at https://buywhere.ai and start searching products from within your AI agent.

Links


Built for AI agents that need real product data. Try it today.


Latest update: See the full BuyWhere MCP Server v0.2.0 — Cross-Border Product Search for AI Agents for the complete changelog and all new features.

Top comments (0)