Skip to main content
Glama

RedReplier

Update Monitored Website

update_website
Destructive

Update a monitored website's display name or description. The description feeds the AI relevance scoring, so keep it accurate.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameNoNew display name
websiteIdYesMonitored website ID (UUID)
descriptionNoNew description (used for relevance scoring)

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultNoThe updated website record with its new name and description.

TDQS

A4.2/5.0
Behavior3/5

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

Annotations already declare destructiveHint=true and readOnlyHint=false, so the mutation is known. The description adds useful context by explaining that the description field feeds AI relevance scoring and should be accurate, which is beyond the annotations. It does not elaborate on reversibility or side effects, but the annotated destructive hint covers the core safety signal.

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 sentences, with the core purpose front-loaded and a consequential caveat right after. Every sentence earns its place, and there is no redundant restatement of the schema or annotations.

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

Completeness4/5

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

The tool is simple, the schema is complete, an output schema exists, and annotations carry the destructive hint. The description adequately covers what is updated and why the description matters. It could mention that existing values are overwritten, but 'New display name' and 'New description' in the schema already convey that.

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 the schema already explains each parameter. The description adds value by explicitly connecting the 'description' parameter to AI relevance scoring and naming 'display name' and 'description' as the updatable fields, reinforcing their semantics beyond the schema.

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?

Description clearly states the action ('Update a monitored website's display name or description') and identifies the resource and specific updatable fields. This distinguishes it from sibling tools like create_website, delete_website, get_website, and analyze_website without requiring schema inspection.

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

Usage Guidelines4/5

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

Description implies the use case: when you need to modify a monitored website's display name or description. It provides the context that the description affects AI relevance scoring, but it does not explicitly mention alternatives or when not to use this tool, so it falls short of a full routing guide.

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