easyjur_list_receitas_grupo
Lista receitas de um grupo.
Bulk support: accepts grupo_ids for batched execution.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | ||
| query | No | ||
| grupo_id | Yes | ||
| grupo_ids | No | ||
| page_size | No |
Lista receitas de um grupo.
Bulk support: accepts grupo_ids for batched execution.
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | ||
| query | No | ||
| grupo_id | Yes | ||
| grupo_ids | No | ||
| page_size | 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, covering the safety profile. The description adds useful bulk-execution behavior, but it does not disclose pagination, querying behavior, or response characteristics beyond what annotations already imply.
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 extremely concise: two sentences, no filler, and the most important bulk behavior is front-loaded. Every sentence adds value.
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?
The core purpose and bulk support are clear, and the annotations cover safety semantics, so this is adequate for a simple list operation. However, the tool has 5 parameters including a nested query object and no output schema, and the description does not clarify pagination, filtering, or what exactly is returned.
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%, so the description carries the burden for parameter meaning. It explains only the bulk role of grupo_ids but leaves grupo_id vs grupo_ids, query, page, and page_size semantically unexplained.
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 uses a specific verb 'Lista' with a clear resource ('receitas') and scope ('de um grupo'), distinguishing it from sibling tools like easyjur_list_receitas and easyjur_get_receita. The additional bulk-support note further clarifies the tool's batch capability.
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 clearly implies group-scoped usage and mentions bulk support via grupo_ids, but it does not explicitly state when to prefer this tool over easyjur_list_receitas or other list variants. No exclusions or alternative recommendations are provided.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.