Skip to main content
Glama
ptrel1

NapCat MCP Server

by ptrel1

get_group_announcement_list

Retrieve all announcements for a specified QQ group by providing its group ID, enabling quick access to group notices for management or review.

Instructions

Get group announcement list

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
group_idYesGroup ID

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.3.0

TDQS

C2.5/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 states that the tool gets a list, with no mention of pagination, ordering, return format, or whether it requires special permissions. For a read operation, this is a notable gap, though the verb 'get' does imply a non-mutating action.

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

Conciseness3/5

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

The description is a single short sentence with no waste, but it is under-specified. It is concise but does not earn its place by adding value beyond the tool name; it essentially restates the name.

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?

For a simple one-parameter read tool, the description is minimal but lacks any context about the returned data, pagination, or relationship to sibling announcement-related tools. With no output schema and no annotations, an agent has little to go on beyond the parameter name.

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 the single group_id parameter. The description adds no additional meaning beyond what the schema provides, so the baseline of 3 is appropriate.

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

Purpose3/5

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

The description 'Get group announcement list' states a specific verb and resource, so an agent can tell it fetches announcements for a group. However, it does not distinguish it from sibling tools like get_group_info or get_group_member_list, and the name is nearly identical to the description, adding little beyond the tool name.

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?

No guidance is provided about when to use this tool versus alternatives. The description does not mention any context, prerequisites, or exclusions, so an agent must infer usage solely from the name and the group_id parameter.

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