Get Me
getMeRetrieve the authenticated user's account details from Cloady to identify who is currently logged in.
Instructions
Get the authenticated user
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
getMeRetrieve the authenticated user's account details from Cloady to identify who is currently logged in.
Get the authenticated user
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Changes observed during successful MCP inspections.
v0.5.1Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and destructiveHint=false, so the description need not repeat safety. It adds minimal behavioral context by specifying 'authenticated user', but does not elaborate on the response shape or any potential errors. Given the annotations, a 3 is appropriate—it adds some context but not rich behavioral detail.
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, concise sentence with no wasted words. It is front-loaded with the core action and resource, making it immediately actionable for an agent.
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 simple getter with no parameters and no output schema, the description is sufficient for an agent to know it returns the authenticated user. While it doesn't detail the response structure, the simplicity of the operation makes this acceptable, and no critical information is missing.
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, so the schema covers everything. With no parameters to explain, the description adds nothing beyond the schema, but per the rubric, a baseline of 4 applies when there are no parameters. The description is adequate.
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 clearly states the verb 'get' and the resource 'the authenticated user', which is specific and unambiguous. It distinguishes this tool from siblings like listTokens, getUserBillingState, and listWorkspaces, making it obvious that it retrieves the current user's profile.
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?
The description implies usage for retrieving the authenticated user but does not explicitly mention when to use it over alternatives or any exclusions. Since it's a self-explanatory getter, the usage is implied rather than explicit, warranting a score of 3.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.