Skip to main content
Glama

read_watchlist_batch

Continue reading multi-group watchlist batches by paging through results with nextOffset, avoiding a full WeChat rescan.

Instructions

继续读取多群关注批次,按nextOffset连续翻页;不重新扫描微信。

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYes
limitNo
offsetNo
batch_idYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv4.1.1

TDQS

C2.7/5.0
Behavior3/5

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

The description adds a behavioral note that it does not rescan WeChat, which is useful context beyond annotations. However, annotations set readOnlyHint to false, implying possible side effects, but the description does not disclose any such effects (e.g., marking items as read). This is a transparency 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 concise, front-loaded with the main purpose, and delivers the key behavioral note in a short second clause. It wastes no words.

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 parameter explanations, the description is incomplete. It does not describe what the tool returns, how to obtain or use the nextOffset, or what id and batch_id represent. For a pagination tool, this is insufficient.

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

Parameters1/5

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

Schema description coverage is 0%, so the description must explain parameters, but it does not. It mentions 'nextOffset' which is not a schema parameter (offset is), and provides no meaning for id, batch_id, limit, or offset. This fails to compensate for the schema gap.

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 identifies the action (continue reading) and resource (multi-group watchlist batch), and adds a distinguishing note that it does not rescan WeChat. This differentiates it from scanning-related tools, though it does not explicitly contrast with sibling read tools like get_recent_messages.

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 implies usage for paginating through watchlist batches but does not state when to use this tool over alternatives such as poll_watchlist or ack_watchlist_batch. There are no explicit exclusions or conditions.

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