麦当劳中国查询
MCP命令行工具,查
Shopping Expert 是一款购物辅助工具,通过 Google Shopping 和 Google Places API 实现线上电商比价与线下门店定位。支持按预算区间、品牌偏好、功能特征进行筛选,自动综合价格、评分、库存状态生成推荐清单。
环境准备
brew install uvexport SERPAPI_API_KEY="your_key"(必需);如需本地搜索,追加 export GOOGLE_PLACES_API_KEY="your_key"基础用法
# 线上搜索咖啡机,中等预算
uv run {baseDir}/scripts/shop.py "coffee maker" --budget medium --max-results 5
# 指定金额与偏好
uv run {baseDir}/scripts/shop.py "running shoes" --budget "$100" --preferences "Nike, cushioned"
# 纯本地搜索
uv run {baseDir}/scripts/shop.py "Bio Gemüse" --mode local --location "Hamburg, Germany"
# 混合模式(线上+线下)
uv run {baseDir}/scripts/shop.py "Spiegelreflexkamera" --mode hybrid --location "München, Germany" --budget high --preferences "Canon, 4K Video"
# 美国区域搜索
uv run {baseDir}/scripts/shop.py "running shoes" --country us --budget "$100"
常用参数:–mode 可选 online/local/hybrid/auto;–sort-by 支持 relevance/price-low/price-high/rating;–output 可选 text/json。
见下方输入与输出表格。
| 项目 | 内容 |
|---|---|
| 输入 | 商品查询词、搜索模式、预算区间/具体金额、地理位置、偏好关键词、结果数量、排序方式、输出格式、国家代码 |
| 输出 | Markdown 表格(商品详情、评分、库存、购买链接)或 JSON 结构化数据 |
| 适用人群 | 线上比价用户、本地寻货消费者、预算敏感型采购者、需快速生成购物清单的人员 |
| 不包含 | 直接支付功能、历史价格追踪、商品真伪验证、门店实时库存保证 |
原始链接:https://github.com/openclaw/skills/tree/main/skills/udiedrichsen/shopping-expert/SKILL.md
来源类型:GitHub 仓库