get_chat_unread
Retrieve the number of unread chat messages on Sheypoor to identify pending conversations and respond promptly.
Instructions
Return the number of unread chat messages.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Retrieve the number of unread chat messages on Sheypoor to identify pending conversations and respond promptly.
Return the number of unread chat messages.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Changes observed during successful MCP inspections.
v0.1.1Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden of behavioral disclosure, but it only states the return value. It does not explicitly confirm that the operation is read-only, require authentication, or clarify how the count is scoped (e.g., current user's total across all chat rooms).
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence with no filler, front-loading the action verb and delivering the core meaning immediately. It is appropriately sized for a parameterless tool.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description covers the return value, which is the most important information for an agent. However, with no annotations and no output schema, it omits prerequisites such as authentication and exact scope, making it adequate but not fully complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters and schema coverage is 100%, so the description has no parameter details to add. The baseline of 4 applies because no parameters exist.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb ('Return') and the exact resource ('the number of unread chat messages'), making the tool's purpose immediately clear. The word 'number' differentiates it from sibling get_chat_rooms, which implies returning rooms rather than a count.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided on when to use this tool versus alternatives like get_chat_rooms. The description does not mention authentication prerequisites, whether it returns a global count, or that it should be called after login, leaving the agent to infer context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.