Skip to main content
Glama

set_autorenew

Stop this lease charging the customer's card again, or start it again. Only a card subscription can be stopped — a bank transfer is a payment the customer sends us, so there is nothing of ours to cancel. Stopping is not a cancellation: the lease runs to the end of the period already paid for, and the same call turns it back on.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
enabledYesfalse stops the next charge, true resumes it.
access_tokenYesReturned by order_lease. The only credential for a lease.

TDQS

A4.2/5.0
Behavior4/5

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

With no annotations, the description carries the burden of disclosing side effects. It explains that stopping is not a cancellation and that the lease continues to the end of the paid period. It also notes the action is reversible ('the same call turns it back on'). This adds meaningful context about behavior, though it doesn't detail error cases or idempotency nuances.

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 three sentences, each adding essential value: the core action, the card-only condition, and the non-cancellation clarification. It is front-loaded with the primary behavior and contains no filler or repetition.

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?

For a simple boolean toggle with two well-documented parameters, the description covers the essential context: what it does, when it applies, and what it does not do. It omits potential error scenarios or response details, but given the tool's low complexity and lack of output schema, this is a minor 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?

The schema already describes both parameters at 100% coverage: 'enabled' (false stops the next charge, true resumes it) and 'access_token' (returned by order_lease). The description reinforces the meaning of 'enabled' by paraphrasing stop/start, but it does not add significant new information beyond what the schema provides. Baseline 3 is appropriate given high schema coverage.

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 the tool's function: 'Stop this lease charging the customer's card again, or start it again.' It uses specific verbs (stop/start) and identifies the resource (lease card charges). It also distinguishes from siblings by clarifying it's not a cancellation and that it applies only to card subscriptions, which is a unique scope.

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?

The description provides clear context for when to use the tool: only for card subscriptions, not bank transfers ('Only a card subscription can be stopped — a bank transfer is a payment the customer sends us, so there is nothing of ours to cancel'). It also explains behavioral boundaries ('Stopping is not a cancellation'). However, it does not explicitly name alternative sibling tools for other lease actions, so it lacks full explicit alternative guidance.

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/5.0
Disambiguation5/5

Each tool targets a distinct aspect: tunnel provisioning/revocation, lease status/ordering/renewal/autorenew, plan listing, and DNS. There is no overlap in core actions, even renew_lease and set_autorenew are clearly manual vs. automatic controls.

Naming Consistency4/5

Most tools follow a clear verb_noun pattern (create_tunnel, list_plans, order_lease, renew_lease, revoke_tunnel, set_autorenew, set_reverse_dns). The exception is 'lease_status', which is a noun phrase rather than a verb command, though it is readable and consistent enough not to cause confusion.

Tool Count5/5

With 8 tools, the set is well-scoped for IP leasing management. It covers provisioning, lifecycle, billing, and DNS configuration without being bloated or thin.

Completeness4/5

Core workflows are covered: order, renew, autorenew, status, tunnels, and DNS. The main gap is the lack of a direct 'cancel lease' or 'delete lease' operation, though stopping autorenew and letting the lease lapse covers this to some extent. No listing of all leases is another minor omission.

Resources