Sign In

@buywhere/mcp-server

Package Overview
Dependencies
Maintainers
1
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@buywhere/mcp-server

BuyWhere MCP server — stdio transport for Claude, Cursor, and other MCP clients

Source
npmnpm
Version
0.3.2
Version published
Weekly downloads
199
103.06%
Maintainers
1
Weekly downloads
 
Created
Source

@buywhere/mcp-server

npm version npm downloads License: MIT

Cross-border product catalog for AI agents. Search and compare products from Singapore, SEA, and US markets via Model Context Protocol.

Works with Claude Desktop, Cursor, VS Code Copilot, Cline, OpenCode, and any MCP-compatible client.

Get your free API key →
No credit card required. 1,000 free queries/month.

Quick Start

export BUYWHERE_API_KEY=bw_live_xxxx
npx -y @buywhere/mcp-server

Get your key: buywhere.ai/api-keys

Example Output

> search_products("wireless headphones")

Found 24 products across 3 markets:

┌──────────────────────────────────┬──────────┬──────────────┐
│ Product                          │ Price    │ Merchant     │
├──────────────────────────────────┼──────────┼──────────────┤
│ Sony WH-1000XM5 (Singapore)      │ $398.00  │ Lazada SG    │
│ Sony WH-1000XM5 (Malaysia)       │ $372.00  │ Shopee MY    │
│ Sony WH-1000XM5 (US)             │ $329.99  │ Amazon US    │
│ Samsung Galaxy Buds2 Pro (SG)    │ $188.00  │ Lazada SG    │
│ ...                              │ ...      │ ...          │
└──────────────────────────────────┴──────────┴──────────────┘

Savings: Buy from US Merchant, save up to $68 on Sony WH-1000XM5.

One query. Cross-border prices. Instant comparison.

Tools

ToolDescription
search_productsSearch catalog by keyword, category, price, region
get_productFull product details by ID (prices, specs, images)
compare_productsSide-by-side comparison of 2–5 products
get_dealsCurrent price drops and promotions across markets
list_categoriesAvailable product category taxonomy

Claude Desktop Setup

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "buywhere": {
      "command": "npx",
      "args": ["-y", "@buywhere/mcp-server"],
      "env": {
        "BUYWHERE_API_KEY": "bw_live_xxxx"
      }
    }
  }
}

Cursor / VS Code / Cline

Same config — add to your MCP settings file:

{
  "mcpServers": {
    "buywhere": {
      "command": "npx",
      "args": ["-y", "@buywhere/mcp-server"],
      "env": {
        "BUYWHERE_API_KEY": "bw_live_xxxx"
      }
    }
  }
}

Configuration

VariableDefaultDescription
BUYWHERE_API_KEY(required)API key from buywhere.ai/api-keys
BUYWHERE_API_URLhttps://api.buywhere.ai/mcpCustom API base URL

License

MIT

Keywords

buywhere

FAQs

Package last updated on 03 May 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts