product-recommendation
1
总安装量
1
周安装量
#47484
全站排名
安装命令
npx skills add https://github.com/kunhai-88/shopme-mcp --skill product-recommendation
Agent 安装分布
windsurf
1
crush
1
amp
1
cline
1
openclaw
1
augment
1
Skill 文档
Product Recommendation & Quality Scoring
AI-powered product evaluation, similarity comparison, and alternative recommendations for cross-border e-commerce.
When to Use
- User asks “is this product any good?”
- User wants to compare two similar products
- User asks for alternative or similar products
- User has a list of products and wants them ranked
- User asks about product quality signals on Chinese platforms
- User needs help deciding which product to buy
MCP Server Setup
{
"mcpServers": {
"product-recommendation": {
"command": "npx",
"args": ["-y", "@shopme/product-recommendation-mcp"],
"env": {
"GEMINI_API_KEY": "your-gemini-key"
}
}
}
}
GEMINI_API_KEY is only required for recommend_alternatives. Other tools work without it.
Available Tools
score_product
Evaluate a product on multiple quality dimensions.
- Input: Product data (name, price, rating, soldCount, reviewCount, shopRating, platform)
- Optional:
averagePricefor value comparison - Returns: Overall score (0-100), dimension scores, analysis, verdict
find_similar
Compare two products for similarity.
- Input: Two product objects
- Returns: Similarity score (0-1), matched features, differences, recommendation
recommend_alternatives
Get AI-powered alternative product suggestions.
- Input: Product name, optional category/budget/preferences
- Returns: 3-5 alternative suggestions with search keywords and platforms
- Requires: GEMINI_API_KEY
rank_products
Batch score and rank multiple products.
- Input: Array of products (2-20)
- Returns: Ranked list with scores and top pick
Scoring Dimensions Explained
| Dimension | Weight | What It Measures |
|---|---|---|
| Quality | 30% | Buyer ratings and reviews |
| Price Value | 25% | Price relative to market average |
| Popularity | 25% | Sales volume and review count |
| Trustworthiness | 20% | Shop rating, images, description quality |
Score Interpretation
| Score | Verdict | Meaning |
|---|---|---|
| 80-100 | Excellent | Safe to buy with confidence |
| 65-79 | Good | Solid choice, minor concerns |
| 50-64 | Average | Acceptable but has trade-offs |
| 35-49 | Poor | Significant concerns |
| 0-34 | Risky | Avoid or proceed with extreme caution |
Quality Signals on Chinese E-commerce
Positive Signals
- Rating ⥠4.8 with 1000+ reviews â Highly trustworthy
- Sold 10,000+ units â Battle-tested product
- Shop rating ⥠4.8 â Reliable seller
- Multiple detailed images â Professional listing
- Tmall brand store â Official/authorized
Red Flags
- No reviews â Too new or fake listing
- Rating < 3.5 â Known issues
- Price is >50% below average â Possible quality issues or counterfeit
- Stock photos only â May not match actual product
- New shop with 0 ratings â Higher risk
Recommendation Workflow
For a single product decision:
score_productâ Get quality assessment- If score < 65, use
recommend_alternativesâ Get better options - Search for alternatives using suggested keywords
For choosing between options:
rank_productswith all candidates â Get ranked listfind_similaron top 2 â Understand key differences- Choose based on your priorities (price vs quality vs shipping)