MCP Hub
Back to servers

BuyWhere MCP

BuyWhere MCP server for product search, price comparison, and affiliate-ready shopping workflows.

Registry
Updated
Apr 29, 2026

Quick Install

npx -y buywhere-mcp

buywhere-mcp

MIT License npm

MCP server for the BuyWhere product catalog. Lets Claude Desktop, Cursor, Windsurf, and other MCP-compatible agents search and retrieve products without writing any HTTP code.

Setup

1. Get your API key

Sign up at buywhere.ai/dashboard and copy your API key.

2. Configure your client

Claude Desktop

Open ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows) and add:

{
  "mcpServers": {
    "buywhere": {
      "command": "npx",
      "args": ["-y", "buywhere-mcp"],
      "env": {
        "BUYWHERE_API_KEY": "your_api_key_here"
      }
    }
  }
}

Cursor

Open Settings → MCP and add a new server, or edit ~/.cursor/mcp.json:

{
  "mcpServers": {
    "buywhere": {
      "command": "npx",
      "args": ["-y", "buywhere-mcp"],
      "env": {
        "BUYWHERE_API_KEY": "your_api_key_here"
      }
    }
  }
}

Remote / Streamable HTTP

BuyWhere also exposes a hosted MCP endpoint for agents that support remote connections:

https://api.buywhere.ai/mcp

Requires Authorization: Bearer <your-api-key> header.


Tools

ToolDescription
search_productsSearch by keyword or natural language
get_productFetch full details for a single product
get_priceCompare prices across all merchants
compare_pricesSide-by-side comparison of 2–5 products
get_affiliate_linkGet click-tracked affiliate URL
get_catalogList available product categories

Environment variables

VariableRequiredDescription
BUYWHERE_API_KEYyesYour BuyWhere API key
BUYWHERE_API_URLnoOverride base URL (default: https://api.buywhere.ai)

Development

npm install
npm run build
BUYWHERE_API_KEY=your_key node dist/index.js

License

MIT

Reviews

No reviews yet

Sign in to write a review