evo_bank_accounts
List the gym's bank accounts.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| account | No | ||
| id_branch | No |
List the gym's bank accounts.
| Name | Required | Description | Default |
|---|---|---|---|
| account | No | ||
| id_branch | No |
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, which the description does not contradict. The description adds a minor scoping detail ('the gym's') but does not elaborate on return behavior, pagination, or authentication requirements. Given the annotation coverage, this meets the baseline but does not exceed it.
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 redundant words. It is front-loaded with the action and resource, making it easy to scan. This is appropriately concise for the simple purpose, though the brevity trades off against completeness.
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 tool with two optional parameters and no output schema, the description is severely lacking. It does not explain what the parameters do, what the output looks like, or any filtering capabilities. The low schema coverage means the description must carry this information, and it fails to do so, making the tool inadequate for an agent to use 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?
Schema description coverage is 0%, and the description provides no explanation of the two parameters ('account' and 'id_branch'). With no additional documentation, the agent cannot know what values to supply or how they affect the result. The description fails entirely to compensate for the lack of schema documentation.
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 action ('List') and the resource ('the gym's bank accounts'). It is specific and easy to understand, though it does not explicitly differentiate from the sibling tool 'evo_list_accounts', which might be a broader listing tool. Still, the intent is unambiguous.
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. There is no mention of prerequisites, exclusions, or comparison with sibling tools like 'evo_list_accounts'. The description simply states what it does, leaving the agent to infer usage context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.