Skip to main content
Glama
h382110229

price-hunter

by h382110229

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
PDD_PIDNo你的推广位PID
JD_APP_KEYNo你的京东AppKey
JD_SITE_IDNo你的推广位SiteID
TB_APP_KEYNo你的淘宝AppKey
TB_ADZONE_IDNo你的推广位ID
JD_APP_SECRETNo你的京东AppSecret
PDD_CLIENT_IDNo你的拼多多ClientID
TB_APP_SECRETNo你的淘宝AppSecret
PDD_CLIENT_SECRETNo你的拼多多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

CapabilityDetails
tools
{
  "listChanged": false
}
prompts
{
  "listChanged": false
}
resources
{
  "subscribe": false,
  "listChanged": false
}
experimental
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
search_productsA

跨平台商品搜索 (并发请求)。

Args:
    keyword: 搜索关键词
    platform: 平台筛选 (all / taobao / jd / pdd)
    page: 页码
    page_size: 每页数量
get_product_detailA

获取单品详情 (含优惠券信息)。

Args:
    product_id: 平台侧商品 ID
    platform: 平台 (taobao / jd / pdd)
compare_pricesA

多平台比价 — 并发搜索 + 按券后价全局升序排序。

Args:
    keyword: 搜索关键词
    page_size: 每平台取前 N 个结果
get_couponsB

搜索优惠券。

Args:
    keyword: 关键词或商品 ID
    platform: 平台筛选 (all / taobao / jd / pdd)
    page: 页码
parse_and_compareA

解析分享链接/淘口令,自动找全网同款并比价。

从用户分享的文本中提取商品标识 (淘口令/京东链接/拼多多链接),
查询原品价格,然后跨平台搜索同款,输出比价报告。

Args:
    raw_text: 包含商品链接或口令的分享文本
    page_size: 每平台取前 N 个同款结果

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A3.7/5.0

Scored across 5 tools

Disambiguation2/5

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.

Naming Consistency4/5

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.

Tool Count5/5

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.

Completeness4/5

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.

Maintenance

ActivityMaintained
ResponsivenessNo issues