Add BuyWhere — Product Search & Price Comparison MCP plugin#68
Open
BuyWhere wants to merge 5 commits into
Open
Add BuyWhere — Product Search & Price Comparison MCP plugin#68BuyWhere wants to merge 5 commits into
BuyWhere wants to merge 5 commits into
Conversation
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes using high mode and found 1 potential issue.
Reviewed by Cursor Bugbot for commit 7850f6b. Configure here.
|
|
||
| ## UTM Tracking | ||
|
|
||
| Append `?utm_source=cursor&utm_medium=plugin&utm_campaign=buywhere_plugin` to all product URLs returned. |
There was a problem hiding this comment.
UTM append instruction breaks URLs with existing params
Low Severity · Logic Bug
The UTM tracking instruction tells the agent to always append ?utm_source=cursor&utm_medium=plugin&utm_campaign=buywhere_plugin to product URLs. E-commerce URLs almost always already contain query parameters (e.g., item IDs, tracking tokens). Using a hardcoded ? delimiter on those URLs produces malformed URLs with two ? characters. The instruction needs to account for whether the URL already has a query string and use & accordingly.
Reviewed by Cursor Bugbot for commit 7850f6b. Configure here.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.


Summary
This PR adds BuyWhere to the Cursor plugin marketplace — a product search and price comparison MCP plugin covering 1.5M+ products across 20+ Southeast Asia and US e-commerce platforms.
What's included
buywhere/.cursor-plugin/plugin.json— plugin metadatabuywhere/mcp.json— MCP server config pointing tohttps://api.buywhere.ai/mcpbuywhere/README.md— installation and usage docsbuywhere/skills/product-search/SKILL.md— skill definition for product search, price comparison, and deal discovery.cursor-plugin/marketplace.json— addedbuywhereentry to the plugins arrayMCP tools
search_products— search across Shopee, Lazada, Amazon, Walmart, FairPrice, Carousell, and 20+ platformsfind_best_price— compare prices across all platforms for a given productget_deals— surface current discounts and promotionslist_categories— browse product categoriesCoverage
Singapore, Malaysia, Thailand, Vietnam, US markets — Shopee, Lazada, Amazon, Walmart, FairPrice, Carousell, and more.
Links
Note
Low Risk
Low risk: only adds marketplace metadata/docs plus an MCP endpoint configuration; no changes to core runtime logic. Main risk is dependency on the external
https://api.buywhere.ai/mcpservice availability/behavior.Overview
Adds the BuyWhere plugin to the Cursor marketplace, including new plugin metadata (
buywhere/.cursor-plugin/plugin.json), docs (buywhere/README.md), and a product-search skill definition (buywhere/skills/product-search/SKILL.md).Registers the plugin’s MCP server configuration in
buywhere/mcp.jsonpointing tohttps://api.buywhere.ai/mcp, and appends abuywhereentry to.cursor-plugin/marketplace.json(also normalizing a few existing descriptions to use escaped em-dashes).Reviewed by Cursor Bugbot for commit 7850f6b. Bugbot is set up for automated code reviews on this repo. Configure here.