DEV Community

BuyWhere
BuyWhere

Posted on

Add BuyWhere shopping MCP to Claude Desktop and Cursor in 2 minutes

BuyWhere is a remote MCP for shopping agents: search, compare, and watch prices across Southeast Asian marketplaces without scraping.

This is the install packet maintainers and agent builders keep asking for. No local process. No paid directory. Copy the config.

Endpoints

Claude Desktop

Add this to claude_desktop_config.json:

{
  "mcpServers": {
    "buywhere": {
      "url": "https://api.buywhere.ai/mcp"
    }
  }
}
Enter fullscreen mode Exit fullscreen mode

Restart Claude Desktop. Ask: Find the cheapest Dyson V15 in Singapore and compare Shopee vs Lazada.

Cursor / other remote MCP clients

Point the client at https://api.buywhere.ai/mcp. If the client still requires a command wrapper:

{
  "mcpServers": {
    "buywhere": {
      "command": "npx",
      "args": ["-y", "mcp-remote", "https://api.buywhere.ai/mcp"]
    }
  }
}
Enter fullscreen mode Exit fullscreen mode

Why this belongs on awesome-mcp lists

Most e-commerce MCP entries scrape a single storefront. BuyWhere is a catalog MCP for agents: product search, comparison, and deal watch with a deliver_to location. That is the shopping-agent primitive, not another Amazon HTML wrapper.

If you maintain awesome-mcp-servers, the natural section is E-Commerce / Shopping. Suggested line:

  • BuyWhere — Remote shopping-catalog MCP (search, compare, deals) for agents. Endpoint: https://api.buywhere.ai/mcp

PRs welcome. Do not pay for directory slots.

Top comments (0)