mercos_list_comissoes
Lista comissões (GET /v1/comissoes). Filtre por colaborador_id ou pedido_id via filters.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| account | No | ||
| filters | No | ||
| alterado_apos | No |
Lista comissões (GET /v1/comissoes). Filtre por colaborador_id ou pedido_id via filters.
| Name | Required | Description | Default |
|---|---|---|---|
| account | No | ||
| filters | No | ||
| alterado_apos | No |
Changes observed during successful MCP inspections.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false. The description reinforces this with the GET method and adds the filter behavior, but it does not disclose pagination, return format, or authentication needs. No contradiction with annotations.
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 compact sentence that front-loads the core action, includes the endpoint, and states the key filtering option. There is no filler or redundant 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?
For a read-only list tool with no output schema, the core operation and primary filter are present. Yet the undefined `account` and `alterado_apos` parameters, plus no mention of pagination or response behavior, leave some gaps for an agent invoking the tool.
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?
With schema description coverage at 0%, the description adds meaning to `filters` by explaining it accepts colaborador_id or pedido_id. However, `account` and `alterado_apos` remain undocumented, so the description only partially compensates for the missing schema descriptions.
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 opens with the specific verb 'Lista' and the resource 'comissões', and adds the REST path GET /v1/comissoes. This clearly states what the tool does and distinguishes it from sibling list tools for other Mercos entities.
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?
It provides clear context: use this tool to list commissions, with filtering guidance via `filters`. It does not explicitly name alternatives or exclusions, but no sibling tool covers commissions, so the usage context is unambiguous enough.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.