get_login_info
Retrieve the current login account's QQ number and nickname to verify identity or display bot status.
Instructions
Get login account information
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Retrieve the current login account's QQ number and nickname to verify identity or display bot status.
Get login account information
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Changes observed during successful MCP inspections.
v0.3.0Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It merely says 'Get' and does not disclose behavior such as whether the tool requires an active login, what data is returned, or whether it is strictly read-only. The agent must infer safety and scope from a single verb.
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 short sentence with no filler. It is appropriately concise for a zero-parameter tool and front-loads the essential operation and target resource.
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?
For a parameterless getter this is minimally sufficient, but there is no output schema and no behavioral or selection context. The description does not clarify what 'login account information' includes or how it differs from credentials or cookies, leaving a notable gap for an agent trying to choose and use the tool confidently.
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 input schema has zero parameters, so there is no parameter semantics to document. The description adds no irrelevant detail, and the baseline for a parameterless tool is appropriately high.
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?
States a clear verb and resource: 'Get login account information.' The intent is understandable, but it does not specify exactly what 'login account information' includes or distinguish it from sibling tools like get_credentials, get_cookies, or get_csrf_token.
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 on when to use this tool compared to alternatives. Given siblings such as get_credentials, get_cookies, and get_status, the description does not explain which one is appropriate for a given login or credential need, leaving selection ambiguous.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.