get_me
Identify the authenticated account: address, kind, scopes. Auth required.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Identify the authenticated account: address, kind, scopes. Auth required.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Changes observed during successful MCP inspections.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full disclosure burden. It explicitly states the operation is an identification/read action, lists the returned data (address, kind, scopes), and warns that auth is required. It does not describe failure behavior, but for a zero-parameter identity tool this is sufficient.
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 one list and one prerequisite, no filler or repetition. It is front-loaded as expected and every word contributes meaning.
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 zero-parameter, no-output-schema identity lookup, the description is complete: it names the purpose, the specific return fields, and the authentication requirement. There are no gaps that would prevent an agent from selecting and invoking it correctly.
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 input schema is complete and there is nothing for the description to add. The baseline of 4 applies because no parameter documentation is needed.
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 names the verb 'Identify' and target resource 'the authenticated account', listing the returned aspects (address, kind, scopes). This distinguishes it from sibling getters like get_balance or get_policy, which target different resources.
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 statement 'Identify the authenticated account' implies it is the tool to call for current user/identity context, and 'Auth required' states a necessary precondition. It does not explicitly name alternatives or exclusions, but the context is clear enough for a simple identity lookup.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.