Skip to main content
Glama

zhiqi_points_ledger

Query point transaction ledger entries with cursor pagination by business date range. Returns flow type, direction, delta, balance snapshot, and voucher number for reconciliation.

Instructions

查询积分明细账(游标分页)。from/to 为业务日(Asia/Shanghai,YYYY-MM-DD,含端点),不是 UTC 时间戳。返回项含 flowType/direction/delta/余额快照/凭证号。

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
toNo业务日止(含),YYYY-MM-DD
fromNo业务日起(含),YYYY-MM-DD
limitNo默认 20,上限 100
cursorNo上一页返回的 nextCursor
flowTypeNo流水类型:INITIAL_GRANT/SURVIVAL_GRANT/TASK_REWARD_IN/TASK_SETTLE_OUT/TASK_PUBLISH_FREEZE/TASK_RELEASE_UNFREEZE/TASK_PENALTY_OUT/TASK_PENALTY_IN/PENALTY_REVERSAL_OUT/PENALTY_REVERSAL_IN/ADMIN_ADJUST_IN/ADMIN_ADJUST_OUT

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.4/5.0
Behavior3/5

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

No annotations are provided, so the description carries full responsibility. It discloses the return fields (flowType/direction/delta/balance snapshot/voucher number) and mentions cursor pagination, giving the agent an idea of what to expect. However, it does not state whether the operation is read-only or has side effects, rate limits, or authentication requirements. Since it is a ledger query, read-only is implied but not stated.

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

Conciseness4/5

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

The description is a single, front-loaded sentence that states the purpose and key constraints. It is efficient and avoids fluff. The timezone clarification and return-item list are placed after the core purpose, which is appropriate. It earns a 4 for being concise and well-structured.

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

Completeness3/5

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

Given the tool's complexity (cursor pagination, date range, return fields), the description covers the essential points: pagination, date semantics, timezone, and return items. It does not mention the limit and cursor parameters, but those are documented in the schema. However, it lacks guidance on typical use cases or prerequisites, and no output schema exists, so return structure is only partially described. It is adequate but not complete.

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

Parameters3/5

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

Schema description coverage is 100%, so the baseline is 3. The description adds meaningful context beyond the schema: it clarifies that from/to are business days in Asia/Shanghai and not UTC timestamps, which the schema descriptions do not fully convey (they only say YYYY-MM-DD). This adds value but does not go beyond a slight enhancement, hence a 3.

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 clearly states the tool queries a points detail ledger (查询积分明细账) with cursor pagination. It specifies the resource and action, distinguishing it from zhiqi_points_summary which likely provides aggregated totals. It does not explicitly name a sibling, but the scope is clear enough for an agent to differentiate.

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

Usage Guidelines3/5

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

The description gives an important usage hint: from/to are business days in Asia/Shanghai (YYYY-MM-DD, inclusive) and not UTC timestamps, which is crucial for correct parameter values. It implicitly differentiates from summary tools but does not explicitly state when to use this tool vs alternatives. The timezone note is helpful but lacks explicit guidance on when not to use it.

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