Skip to main content
Glama
headleymonitor-ux

durable-web-monitor-mcp

check_url

Fetches a public HTTPS page and updates its durable baseline to track content changes.

Instructions

Fetch one public HTTPS page and update its durable baseline.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlYes
nameYes
targetNobody
adapterNodirect
watch_termsNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.9/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the full burden, and it does disclose two real traits: the fetch is outbound to a *public HTTPS* page (a network + reachability constraint) and the call mutates persistent state ('update its durable baseline'), so an agent knows it is not read-only. It stops there, saying nothing about permissions, what happens to the prior baseline, rate limits, or failure behavior.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

A single front-loaded sentence with no filler or redundancy; the action and the state change come first. It is efficient, though the extreme terseness borders on under-specification rather than crispness.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a 5-parameter mutation tool with no annotations, no output schema, and no schema descriptions, one sentence is not enough. The agent cannot determine what target, adapter, or watch_terms do, what 'baseline' means, or what the call returns or changes.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Five parameters at 0% schema description coverage, and the description names none of them. 'Fetch one public HTTPS page' weakly constrains url, and 'durable baseline' hints at name, but target, adapter, and watch_terms are entirely opaque in both description and schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

States a concrete verb pair (fetch + update) and resource (a public HTTPS page / its durable baseline), which is more specific than the sibling names list_notifications or mark_notifications_reviewed. The term 'durable baseline' is internal jargon that isn't defined, so the purpose is clear in shape but not fully in meaning, and it doesn't explicitly differentiate itself from monitor_status.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No when-to-use, when-not-to-use, or alternative routing is given. With a sibling like monitor_status clearly adjacent in function, the description should say how check_url relates to it, but it offers nothing.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.