Skip to main content
Glama

create_watch

Watch something and fire your webhook when it changes. Types: change, keyword, regex, structured, drift, redirect, sitemap, staleness, rss, dns, port, cert, heartbeat.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlNoURL to watch
daysNo
hostNo
jsonNo
nameNoDNS name
portNo
typeYeswatch type
domainNofor cert watch
recordNoDNS record type
keywordNo
patternNoregex
percentNodrift threshold
webhookYescalled on change
selectorNoCSS selector or JSON path
confirmationsNofire only after N consecutive hits
interval_secondsNo

TDQS

B3/5.0
Behavior2/5

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

With no annotations provided, the description carries the full burden of explaining behavior. It states that a webhook fires on change but does not elaborate on polling intervals, error handling, how long a watch persists, or what happens when resources are created. The type-specific behaviors are merely listed, not explained, leaving significant gaps for a 16-parameter tool.

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

Conciseness5/5

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

The description is two sentences long and front-loaded with the core action ('Watch something and fire your webhook when it changes'). The type list is compact and adds value by enumerating supported modes. There is no filler or redundant text.

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?

The tool has 16 parameters, no output schema, and no annotations. The description provides only a high-level summary and a type list, but does not explain how parameters interact with types, expected responses, or operational details such as resource cleanup. This is insufficient for an agent to correctly configure a watch without additional knowledge.

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?

The schema has only 63% description coverage, with several parameters (days, json, port, keyword, interval_seconds) having empty descriptions. The tool description adds no parameter-level meaning beyond the schema; it only lists types without mapping them to the appropriate parameters. This fails to compensate for the roughly 6 undocumented parameters.

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?

The description clearly states the tool's function: 'Watch something and fire your webhook when it changes.' It also lists a broad set of watch types, making it easy to understand the core capability. However, it doesn't explicitly distinguish itself from sibling tools like create_deadman or watch_status, though the overall purpose is unambiguous.

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

Usage Guidelines3/5

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

The types list implies use cases (e.g., 'keyword' for keyword watches, 'cert' for certificate monitoring), but there is no explicit guidance on when to choose this tool over a sibling or when not to use it. No alternatives are mentioned, such as using watch_status to inspect an existing watch, so the guidance is only implied.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

B3/5.0
Disambiguation4/5

Most tools have clearly distinct purposes, but create_wakeup and delayed_delivery both schedule future webhook deliveries, and frontdoor/inbox are similar buffering mechanisms. Overall, descriptions are detailed enough to distinguish most tools.

Naming Consistency4/5

The majority follow verb_noun snake_case, but there are exceptions like guaranteed_delivery, delayed_delivery, credit_balance, and counter_incr (abbreviation). Still, the overall pattern is readable and predictable.

Tool Count2/5

45 tools is excessive for a single MCP server, likely overwhelming for an agent. While the scope is broad, many tools could be consolidated or split into multiple servers.

Completeness4/5

The tool set covers a wide range of reliability primitives (queues, checkpoints, counters, watches, approvals) with create/read/manage operations. Gaps like explicit deletes are handled via TTL or generic cancel_resource, so workflows are not dead-ended.

Resources