Skip to main content
Glama

获取群成员列表

get_group_member_list
Read-only

Retrieve the complete member list for a specified QQ group, with an option to bypass cached data for current results.

Instructions

获取指定群的全部成员列表(成员较多时返回会较大)。

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
group_idYes群号
no_cacheNo是否不使用缓存

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.5/5.0
Behavior3/5

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

Annotations already indicate readOnlyHint=true and destructiveHint=false, so the read-only nature is covered. The description adds a useful behavioral warning that the response may be larger when the group has many members, but it does not mention caching behavior, pagination, or return format.

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 a single sentence that front-loads the main action and adds a relevant caveat in parentheses. Every word earns its place, with no redundancy or filler.

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?

For a simple read-only list operation with only one required parameter, the description is mostly adequate. However, with no output schema, it does not clarify what fields the returned member list contains, nor does it explain the behavior of the no_cache flag beyond the schema description.

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%, with group_id and no_cache both described in the schema. The description does not add any additional meaning to the parameters, so the baseline of 3 applies.

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?

The description uses a specific verb and resource: '获取指定群的全部成员列表' (get the full member list of the specified group). It distinguishes itself from the sibling get_group_member_info by emphasizing '全部' (all), making the scope unambiguous.

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

Usage Guidelines2/5

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

The description provides no guidance on when to use this tool versus alternatives such as get_group_member_info. No exclusions, prerequisites, or conditions are given; the usage context is left entirely to inference.

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