Hi Supabase team! Many developers use Supabase as the backend for AI shopping apps and agents. I wanted to suggest BuyWhere MCP as a complementary real-time product data source for these use cases.
BuyWhere is a hosted MCP server providing live product search across 3.8M+ products from verified merchants in Southeast Asia (SG, MY, PH, ID, TH, VN). Developers building e-commerce AI apps with Supabase could use BuyWhere to power their product search layer without scraping.
A Supabase-backed shopping app where:
// BuyWhere MCP connection
const buywhere = new MCPClient({
url: "https://api.buywhere.ai/mcp",
headers: { Authorization: `Bearer ${process.env.BUYWHERE_KEY}` }
});
const products = await buywhere.call("search_products", {
query: "wireless earbuds",
country: "SG",
max_price: 100
});
Would love to be featured in the Supabase examples or the AI section of the docs!
BuyWhere suggests integrating their MCP as a real-time product data source for Supabase-backed AI shopping apps. They provide a use case where BuyWhere MCP enhances product search capabilities, complementing Supabase's data storage. The user proposes contributing documentation or examples to illustrate this integration.
I’m interested in helping with this. Would the Supabase team be open to a small docs/example PR showing a Supabase + MCP shopping-agent pattern, or should this wait for triage?