Skip to main content
Glama
ptrel1

NapCat MCP Server

by ptrel1

get_group_member_info

Retrieve detailed information about a specific group member by supplying the group ID and user QQ number.

Instructions

Get specified group member detailed info

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
user_idYesUser QQ number
group_idYesGroup ID

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.3.0

TDQS

B3.1/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full burden of behavioral disclosure. It only says 'get detailed info' and does not disclose what fields are returned, whether the target must be in the group, whether it can fail for certain user IDs, or any rate limits. For a read operation, this is a notable gap.

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 concise sentence that is front-loaded with the action and resource. It earns its place, though it could add a bit more context without becoming verbose.

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

Completeness2/5

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

With no output schema and no annotations, the description is thin for a tool that returns 'detailed info'. An agent would not know what fields to expect, whether the member must be in the group, or how errors are signaled. Given the sibling set includes similar getters, more context is needed.

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 schema already documents both parameters (user_id as 'User QQ number' and group_id as 'Group ID'). The description adds no additional meaning beyond what the schema provides, so baseline 3 is appropriate.

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 'Get specified group member detailed info' clearly states the verb (get) and resource (group member detailed info), and the parameters group_id and user_id make the target specific. It is distinguishable from siblings like get_group_info and get_group_member_list, though it doesn't explicitly name them.

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 implies usage: call this when you need detailed info about one specific group member, identified by group_id and user_id. It does not explicitly state when to use alternatives like get_group_member_list (for all members) or get_stranger_info (for non-group context), but the context is reasonably clear.

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