Should I Fetch This URL Again?
fresh_checkReturn REUSE, REFETCH, or UNKNOWN before retrieving a URL again.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | ||
| lastSeenAt | Yes | ||
| toleranceSeconds | No |
fresh_checkReturn REUSE, REFETCH, or UNKNOWN before retrieving a URL again.
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | ||
| lastSeenAt | Yes | ||
| toleranceSeconds | No |
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, idempotentHint, and destructiveHint false, covering safety. The description adds the return value semantics but does not explain decision logic (e.g., what UNKNOWN means or how toleranceSeconds affects the result). This is useful but limited beyond annotation coverage.
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 that front-loads the key output values and the usage context. Every word earns its place; there is no redundancy or filler.
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?
While the tool is simple and annotations cover safety, the description omits details about parameter semantics and decision criteria. No output schema exists, so the description must convey return behavior, which it partially does. However, the lack of parameter explanations and the vague UNKNOWN state make it incomplete for full understanding.
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%, yet the description provides no parameter explanations. The parameter names (url, lastSeenAt, toleranceSeconds) are somewhat self-explanatory, but the description fails to clarify their roles or how they interrelate, especially for required parameters.
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 tool's purpose with a specific verb ('Return') and explicit output values (REUSE, REFETCH, or UNKNOWN). It positions the tool as a pre-fetch check, distinguishing it from the sibling tool fresh_observe, which likely performs the actual observation.
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 phrase 'before retrieving a URL again' provides clear contextual guidance on when to use this tool. It does not explicitly mention alternatives, but the sibling relationship to fresh_observe makes the intended usage apparent. No exclusions are stated, but the context is sufficient.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Add one secure layer between your agents and this server.
The two tools have clearly distinct roles: one is for pre-retrieval status checking, the other for post-retrieval metadata observation. No overlap or ambiguity exists between them.
Both tools follow the same 'fresh_' prefix with a descriptive verb ('check' and 'observe'), creating a consistent and predictable naming pattern.
With only two tools, the set is on the thin side but appropriately scoped for a very focused freshness utility. It does not feel excessively sparse, though it is minimal.
The tool pair covers the full lifecycle of freshness handling: check before retrieval and observe after retrieval. No obvious dead ends or missing operations within this narrow domain.