Skip to main content
Glama

regru_set_autorenew

Toggle automatic renewal for a service by providing its service ID and a boolean flag. Use it to enable or disable auto-renewal for domains or other REG.RU services.

Instructions

Enable or disable automatic renewal for a service.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
flagYesEnable (true) or disable (false) auto-renewal
service_idYesService ID

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.9/5.0
Behavior2/5

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

With no annotations, the description carries the full behavioral burden and discloses almost nothing: it does not say whether the call is idempotent, whether it requires ownership/permissions, whether the change is reversible, or what happens if the service is already expired. For a mutation tool this is a significant gap.

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, so the action is immediately clear. It is arguably too terse to be 'appropriately sized' for a state-changing tool, keeping it out of the top band.

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

Completeness3/5

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

The tool is simple (2 required params, full schema coverage, no output schema), so little is strictly needed. Still, a mutation with zero annotations leaves behavior, auth, and reversibility unexplained, which is a clear but modest gap.

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

Parameters3/5

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

Schema description coverage is 100%, so both service_id and flag are already documented, including the true/false meaning of flag. The description adds no syntax, format, or edge-case detail beyond the schema, which is the baseline-3 case.

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 names a concrete verb pair (enable/disable) and a specific resource (automatic renewal for a service), which is unambiguous. It does not, however, differentiate itself from the sibling regru_renew_service, which an agent could easily confuse with it.

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?

There is no guidance on when to toggle auto-renewal versus using regru_renew_service, no prerequisites, and no stated conditions. The agent must infer usage entirely from the name.

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