JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 149
  • Score
    100M100P100Q101952F
  • License MIT

BuyWhere MCP server — search and compare products from Singapore, SEA, and US markets via Model Context Protocol. Cross-border e-commerce product catalog for AI agents.

Package Exports

  • @buywhere/mcp-server
  • @buywhere/mcp-server/dist/index.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@buywhere/mcp-server) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

@buywhere/mcp-server

npm version License: MIT

BuyWhere MCP server — search and compare products from Singapore, SEA, and US markets via the Model Context Protocol. Cross-border e-commerce product catalog for AI agents.

Supports AI agents in Claude Desktop, Cursor, VS Code Copilot, and any MCP-compatible client.

Install

# Run directly with npx (no install needed)
npx -y @buywhere/mcp-server

# Install globally
npm install -g @buywhere/mcp-server
buywhere-mcp

Configuration

Set the BUYWHERE_API_KEY environment variable:

export BUYWHERE_API_KEY=bw_live_xxxx
npx @buywhere/mcp-server

Get your API key at https://buywhere.ai/api-keys.

Optional

Variable Default Description
BUYWHERE_API_URL https://api.buywhere.ai/mcp Custom API base URL

Tools

Tool Description
search_products Search catalog by keyword, category, price, region
get_product Full product details by ID
compare_products Side-by-side comparison of 2–5 products
get_deals Current price drops and promotions
list_categories Available product category taxonomy

Claude Desktop Setup

Add to your claude_desktop_config.json:

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

Cursor / VS Code Setup

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

Development

git clone https://github.com/buywhere/mcp-server.git
cd mcp-server
npm install
npm run build
npm start

License

MIT