linkpulse_diff
Re-check a URL and tell you whether its content hash has changed since a previous hash you supply. Returns boolean + new hash.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | ||
| previous_hash | Yes |
Re-check a URL and tell you whether its content hash has changed since a previous hash you supply. Returns boolean + new hash.
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | ||
| previous_hash | Yes |
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?
With no annotations provided, the description carries the full burden. It discloses the core action (re-checking the URL) and the return value, but does not mention error handling, side effects, or whether it makes a network request. It lacks details about invalid hashes or unreachable URLs.
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, front-loaded with the action, and contains no unnecessary words. It perfectly balances brevity with essential information.
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 two-parameter tool with no output schema, the description covers the core functionality and return type. However, it omits potential error cases and does not clarify the hash algorithm, leaving some context out.
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 must compensate. It only ties 'previous_hash' to a 'content hash' without specifying format, algorithm, or how to obtain it. The url parameter is self-explanatory from the schema, but the hash parameter lacks necessary detail.
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 specifically states the tool re-checks a URL and compares its current content hash to a supplied previous hash, returning a boolean and new hash. This clearly distinguishes it from sibling tools like linkpulse_check, linkpulse_classify, and linkpulse_resolve.
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 implies usage when you have a previous hash and want to detect changes, but it does not explicitly state when to use this tool over siblings or when not to use it. No alternatives or exclusions are mentioned.
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.
Each tool serves a distinct operation: check fetches and analyzes a URL, classify works on already-fetched content, diff compares hashes over time, and resolve traces redirects only. The input and output contexts are clearly separated in descriptions, leaving little room for confusion.
All tools follow a uniform 'linkpulse_' prefix with a simple verb suffix: check, classify, diff, resolve. This consistent verb-only pattern makes the toolset predictable and easy to memorize.
Four tools cover the core needs of a link-checking utility without unnecessary bloat. Each tool adds a distinct capability—full inspection, offline classification, change detection, and redirect resolution—making the count well-scoped for the domain.
The tool set provides complete lifecycle coverage for the implied purpose: fetching and analyzing a link, resolving redirects, classifying content, and detecting changes. The wayback fallback in check also handles dead links, leaving no obvious dead ends or missing operations.