Skip to main content
Glama

查询应用评论

agc_list_reviews
Read-only

Retrieve app reviews from Huawei AppGallery Connect for a specified app, platform, date range, and country. Filter by rating, version, language, or keyword to analyze user feedback and identify issues.

Instructions

查询应用评论列表(时间跨度不超过 6 个月,一次只能查询同一站点内的国家)。需要 API 客户端凭据(评论接口不支持 Service Account);站点(site)需与所查国家所在站点一致。

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
endYes结束时间,格式同上;YYYY-MM-DD 取当天结束
pageNo
siteNo站点:cn 中国 / de 德国 / sg 新加坡 / ru 俄罗斯。默认使用 AGC_SITE 配置
sortNo0 按时间 / 1 分数降序 / 2 分数升序
appIdYes
beginYes开始时间:YYYY-MM-DD(按北京时间)、ISO 时间或毫秒时间戳
langsNo语言过滤(HarmonyOS 如 zh;Android 如 zh_CN)
limitNo每页条数,最大 100,默认 20
contentNo评论内容关键词
ratingsNo评分过滤,如 "1,2"
platformYes应用平台:harmonyos = HarmonyOS 5 及以上应用/元服务(v3 接口);android = Android 及 HarmonyOS 4 及以下(v2 接口)
versionsNo应用版本过滤,逗号分隔
countriesNo国家码,逗号分隔,默认 CNCN
devReplyStatesNo答复状态:0 未答复 / 1 已答复 / 6 用户追加回复 / 3 答复被回复

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.3/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Beyond the readOnlyHint and openWorldHint annotations, the description discloses meaningful behavioral traits: the comments API does not support Service Account authentication, results are limited to 6-month spans, and site-country coupling restricts queries. This adds real operational context that annotations do not provide.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two dense sentences with no filler. The primary purpose is front-loaded, followed by the most critical operational constraints. Every phrase earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the 14-parameter complexity, the description covers authentication, time limits, and site-country rules. With a rich schema and readOnly/openWorld annotations, it is mostly complete; the main omission is any indication of return shape or pagination behavior, which would further help an agent.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 86%, so the schema already documents most parameters. The description adds cross-parameter semantics: begin/end are limited to 6 months, and site must align with the countries being queried. It does not add nuance for all optional filters like devReplyStates or sort, but the schema largely covers their meaning.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific action ('查询应用评论列表') and resource, and adds important scope constraints (6-month span, single-site country limitation). It does not explicitly differentiate from siblings like agc_get_ratings or agc_reply_review, but the list semantics are clear and distinct enough.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides explicit usage constraints: time span must not exceed 6 months, only one site's countries can be queried at a time, API client credentials are required, and the site must match the country's site. It does not name alternatives or state when not to use this tool, so it falls short of full routing guidance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.