Fetch a Latido result (deep research)
fetchFull public storefront document for one result id from search. For a structured answer prefer get_vendor.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | A result id from search. |
fetchFull public storefront document for one result id from search. For a structured answer prefer get_vendor.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | A result id from search. |
Changes observed during successful MCP inspections. Dates show when Glama detected each change.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The annotations already declare the tool as read-only, idempotent, and non-destructive. The description only adds that it returns a document, which is minimal extra behavioral insight beyond the 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 extremely concise, consisting of two sentences: the first states the main function, and the second gives a clear alternative. It is well-structured and front-loaded.
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 simple one-parameter fetch operation, the description provides enough context: what the tool does and a pointer to an alternative for structured data. It lacks explicit details about the document format, but given the absence of an output schema, this is acceptable.
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 input schema already provides a description for the 'id' parameter ('A result id from search'), and the tool description repeats this information without adding new meaning. Per rubric, baseline is 3 due to high schema coverage.
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 that the tool fetches a full public storefront document for a given result id from search, and distinguishes it from get_vendor for structured answers. However, 'full public storefront document' is slightly vague.
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 a clear usage guideline by recommending get_vendor for structured answers, implying this tool is for unstructured or full document retrieval. It also ties usage to search results via the id parameter description.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.