This repository was archived by the owner on May 21, 2026. It is now read-only.
Description Example Use Case: BuyWhere MCP
Hi! Wanted to share BuyWhere MCP as a practical example for mcp-use-ts users — a real-world remote MCP server with live product data.
What is BuyWhere?
BuyWhere is a hosted MCP server with 3.8M+ products from Southeast Asia merchants (SG, MY, PH, ID, TH, VN). It is production-ready and free to start.
Usage with mcp-use-ts
import { MCPClient } from "mcp-use" ;
const client = new MCPClient ( {
servers : {
buywhere : {
url : "https://api.buywhere.ai/mcp" ,
headers : { Authorization : "Bearer YOUR_KEY" }
}
}
} ) ;
// Search for products
const result = await client . call ( "buywhere" , "search_products" , {
query : "wireless earbuds" ,
country : "SG" ,
max_price : 100
} ) ;
Free API key: buywhere.ai/api-keys | Smithery: smithery.ai/servers/partners/buywhere-mcp | Docs: api.buywhere.ai/docs/guides/mcp
Would be a great addition to examples or the README!
Reactions are currently unavailable
Example Use Case: BuyWhere MCP
Hi! Wanted to share BuyWhere MCP as a practical example for mcp-use-ts users — a real-world remote MCP server with live product data.
What is BuyWhere?
BuyWhere is a hosted MCP server with 3.8M+ products from Southeast Asia merchants (SG, MY, PH, ID, TH, VN). It is production-ready and free to start.
Usage with mcp-use-ts
Free API key: buywhere.ai/api-keys | Smithery: smithery.ai/servers/partners/buywhere-mcp | Docs: api.buywhere.ai/docs/guides/mcp
Would be a great addition to examples or the README!