Skip to main content
Glama

register_brand_audit_watch

Creates a recurring brand-audit watch for a domain on a daily/weekly/monthly cadence. Each run enqueues a fresh brand_audit_batch_start and (when a webhook is configured) POSTs a diff webhook on classification drift. Returns the new watchId. Owner-scoped; per-principal cap of 20 active watches.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
domainYesDomain to watch.
intervalYesRecurrence interval.
webhook_urlNoOptional webhook URL — POSTed on classification drift. Re-validated for SSRF at both register and delivery time.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
scoreYes
passedYes
partialNo
categoryYes
findingsYes
checkStatusNo

TDQS

A4.6/5.0
Behavior4/5

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

Annotations already indicate readOnlyHint=false, destructiveHint=false, idempotentHint=false, and openWorldHint=true. The description adds critical behavioral context: this tool triggers ongoing background work (each run enqueues brand_audit_batch_start), has a per-principal cap of 20 watches, and respects owner scoping. It does not mention whether the response includes the watchId directly (it says 'Returns the new watchId') which is useful but could be inferred from the output schema. The only minor gap is not stating failure modes (e.g., what happens if the cap is hit), but overall this adds substantial value 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.

Conciseness4/5

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

The description is three sentences and 250 characters, fitting all essential information without redundancy. The first sentence nails the core purpose. The second sentence explains the webhook diff and lifecycle, which is a key behavioral detail. The third sentence covers return value and limitations. It could be slightly more structured (e.g., bullet points for the three actions) but is already very clear. Loses a point for minor redundancy in 'each run enqueues a fresh brand_audit_batch_start'—'fresh' is implicit, and 'enqueues' could be more direct like 'triggers'—but overall efficient.

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

Completeness5/5

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

Given the moderate complexity (3 params, output schema present, 20+ sibling tools), the description covers everything needed for correct invocation: what it creates, what parameters matter, the lifecycle (enqueues a run, returns watchId, optional webhook), and constraints (owner-scoped, cap of 20). The presence of an output schema (implied by 'Returns the new watchId' and likely JSON) means the description doesn't need to detail the return shape. No critical gaps remain—the agent can confidently decide when to call this tool vs. list/delete counterparts.

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

Parameters4/5

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

Schema description coverage is 100%, so each parameter (domain, interval, webhook_url) is already documented in the schema. The description adds context by mentioning that webhook POSTs happen only when configured and re-validated for SSRF at both registration and delivery time, which goes beyond the schema's description of just 'Optional webhook URL — POSTed on classification drift. Re-validated for SSRF at both register and delivery time.' It also implicitly groups the interval into daily/weekly/monthly, matching the enum. The description does not repeat the schema's details verbatim but integrates them into the workflow narrative, which is a good balance.

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

Purpose5/5

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

The description clearly states it creates a recurring brand-audit watch for a domain with configurable cadence (daily/weekly/monthly). It distinguishes itself from related tools like list_brand_audit_watches (listing) and delete_brand_audit_watch (deletion), and from brand_audit_batch_start (which is a component triggered by this watch, not the watch itself). The verb 'creates' plus the specific resource 'recurring brand-audit watch' leaves no ambiguity.

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

Usage Guidelines5/5

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

The description explicitly states 'Owner-scoped; per-principal cap of 20 active watches,' informing the agent of authorization boundaries and a hard limit that may require checking list_brand_audit_watches first. It also notes that each run enqueues a brand_audit_batch_start (explaining the downstream effect) and optionally POSTs a webhook, helping the agent understand when to configure the webhook_url parameter. No alternatives are given because no other tool creates watches, so this is appropriately complete.

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

A3.6/5.0
Disambiguation4/5

Most tools have clearly distinct purposes, with detailed descriptions that help differentiate overlapping areas (e.g., check_dane vs check_dane_https). However, there are sets of similar tools (brand audit, OSINT, polling) that could cause confusion if descriptions are not carefully read.

Naming Consistency3/5

The naming is mostly readable but inconsistent: many check_* tools follow a verb_noun pattern, but there are also noun_verb names (scan_domain, cymru_asn), bare verbs (generate), and varied patterns for async operations (discover_brand_domains_start vs discover_brand_domains).

Tool Count2/5

With 80 tools, the server feels overstuffed. It covers multiple domains (DNS, email, brand, OSINT, M365) that could benefit from separation. The high number includes many polling/status tools that add overhead.

Completeness3/5

The server covers core DNS and email security checks thoroughly, including many edge cases (e.g., BIMI, MTA-STS, subdomain takeover). However, there are gaps like lack of direct DNS record management and some OSINT tools are restricted to operator deployment, leaving agents with dead ends.