Skip to main content
Glama

用户价格

user_price
Read-onlyIdempotent

Check actual product prices for your account, including admin-set custom prices, to estimate cost before placing an order.

Instructions

查询当前账号各产品的实际价格,含管理员给该账号设置的自定义价;下单前用它估算费用。

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.4/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is covered. The description adds meaningful behavioral context: results are scoped to the current account and include admin-customized prices, which is useful beyond the annotations.

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?

Two short sentences: the first defines what the tool returns, the second gives the practical use case. No redundant wording, and the key distinction (custom prices) is front-loaded.

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?

For a parameterless, read-only query tool, the description covers what is queried, the account scope, the inclusion of custom prices, and when to use it. No output schema exists, but the semantic result is clear enough for an agent to invoke it correctly.

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?

The tool has zero parameters and the schema is empty, so the baseline is 4. The description correctly implies no user input is needed by referring to '当前账号', making the parameterless nature self-evident.

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

Purpose5/5

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

Description states a specific verb ('查询') and resource ('当前账号各产品的实际价格'), adding that custom admin prices are included. This clearly distinguishes it from sibling tools like official_price, which presumably returns standard pricing.

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 gives a clear use case: '下单前用它估算费用' (use it to estimate costs before placing an order). It does not explicitly name official_price as an alternative or state when not to use it, but the actual-price vs official-price contrast is strongly implied.

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