price-hunter
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| PDD_PID | No | 你的推广位PID | |
| JD_APP_KEY | No | 你的京东AppKey | |
| JD_SITE_ID | No | 你的推广位SiteID | |
| TB_APP_KEY | No | 你的淘宝AppKey | |
| TB_ADZONE_ID | No | 你的推广位ID | |
| JD_APP_SECRET | No | 你的京东AppSecret | |
| PDD_CLIENT_ID | No | 你的拼多多ClientID | |
| TB_APP_SECRET | No | 你的淘宝AppSecret | |
| PDD_CLIENT_SECRET | No | 你的拼多多ClientSecret |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| search_productsA | 跨平台商品搜索 (并发请求)。 |
| get_product_detailA | 获取单品详情 (含优惠券信息)。 |
| compare_pricesA | 多平台比价 — 并发搜索 + 按券后价全局升序排序。 |
| get_couponsB | 搜索优惠券。 |
| parse_and_compareA | 解析分享链接/淘口令,自动找全网同款并比价。 |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 5 tools
search_products and compare_prices both perform keyword searches and largely overlap, with compare_prices essentially being a sorted multi-platform version of search_products. get_product_detail already includes coupon information while get_coupons re-searches coupons separately, and parse_and_compare is compare_prices with link parsing added. Agents may struggle to choose the correct tool for a given task.
Most tools follow a clear verb_noun snake_case pattern: search_products, get_product_detail, compare_prices, get_coupons. parse_and_compare breaks the noun-object pattern with a compound verb, but the naming is still readable and generally predictable.
Five tools is well-scoped for a cross-platform price-hunting server. Each tool maps to a meaningful user workflow such as searching, viewing detail, comparing prices, finding coupons, and parsing shared links, without bloating the surface.
The core price-hunting workflow is covered: search, product detail, coupon lookup, multi-platform comparison, and share-link parsing. Minor gaps exist, such as comparing by a specific product ID across platforms or a dedicated coupon-detail endpoint, but agents can generally work around these.