Skip to main content
Glama

RedReplier

Update Alert Settings

update_alert_settings
Destructive

Enable/disable mention email alerts and set the cadence. cadenceMinutes must be one of 60, 240, 720, 1440 and is clamped up to the plan's fastest allowed interval. Omit cadenceMinutes to use the plan default.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
enabledYesTurn email alerts on or off
cadenceMinutesNoAlert frequency in minutes: 60 (hourly), 240 (4h), 720 (12h), 1440 (daily)

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultNoThe saved alert settings with the enabled flag and effective cadence.

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already signal a mutating/destructive operation. The description adds valuable behavioral detail: cadenceMinutes is restricted to specific values, clamped to the plan's fastest allowed interval, and omission falls back to the plan default. This goes beyond the schema and annotations without contradicting them.

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?

Two tight sentences accomplish the job: the first states the tool's core purpose, and the second packs the essential constraints and default behavior. No filler or redundancy exists.

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?

The tool has only two simple parameters, one required, and an output schema. The description, along with the schema and annotations, gives an agent everything needed to call it correctly: required enabled, optional cadence constraints, and mutating behavior.

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 coverage is 100%, so the baseline is 3. The description adds extra semantic value by clarifying the cadenceMinutes allowed set, the plan-based clamping behavior, and the default when omitted, which are not fully captured in the schema field descriptions.

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 uses a specific verb-resource pairing: 'Enable/disable mention email alerts and set the cadence.' This clearly identifies the tool's action and distinguishes it from read-only siblings like get_alert_settings and from unrelated tools like delete_website.

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 description gives clear parameter usage guidance, such as valid cadenceMinutes values, plan clamping, and the default behavior when omitted. However, it does not explicitly state when to choose this tool over get_alert_settings, so the usage context is implied rather than directly stated.

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

A4.2/5.0
Disambiguation5/5

Each tool maps to a distinct resource and action: website CRUD, keyword lifecycle, mention queries/updates, alert settings, and billing previews. Even similar tools like list_mentions/count_mentions and activate_pending_keywords/preview_activate_pending are clearly separated as listing vs counting and action vs preview.

Naming Consistency4/5

The vast majority follow a clear verb_noun pattern (list_websites, create_website, update_mention_status, preview_keyword_billing). The only noticeable outlier is keyword_change_usage, which reads like a noun phrase instead of get_keyword_change_usage, and activate_pending_keywords/preview_activate_pending invert verb placement.

Tool Count4/5

21 tools is on the higher side for an MCP server, but the count is justified by the number of distinct resources (websites, keywords, mentions, alerts, billing) and the need for action/preview pairs. It feels slightly heavy but not bloated.

Completeness4/5

The server covers the core lifecycle for websites, keywords, mentions, alerts, and billing previews with no dead ends: create/list/update/delete resources and status transitions are all present. Minor gaps exist, such as no direct current-plan retrieval and no bulk mention status updates, but agents can work around these.

Resources