dietaai_user
Perfil básico do usuário: nome, email, userId, fuso horário, idioma e data de criação.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Perfil básico do usuário: nome, email, userId, fuso horário, idioma e data de criação.
| 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?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is clear. The description adds useful context about the returned fields but does not disclose behavior such as whether this is the current authenticated user's profile or whether authorization is required.
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 that front-loads the core purpose and lists the key fields. Every word earns its place, with no filler or repetition.
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?
Given the tool has no parameters and no output schema, the description adequately communicates the return contents by listing the profile fields. It could be slightly more complete by clarifying that it refers to the current authenticated user, but for a simple read-only profile tool it is largely sufficient.
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 there is no parameter semantics burden on the description. 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 identifies the tool as exposing the basic user profile ('Perfil básico do usuário') and enumerates its fields: nome, email, userId, fuso horário, idioma e data de criação. It is specific enough to distinguish from sibling tools like dietaai_subscription or dietaai_diabetes, though it lacks an explicit verb such as 'retrieves' or 'gets'.
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 provides no guidance on when to use this tool versus alternatives, nor does it mention prerequisites like authentication. It is implied that this is the profile-access tool, but there is no explicit context or exclusion of sibling tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.