Skip to main content
Glama

renew_lease

Raise an invoice for another term and keep the same addresses. This is how a trial becomes a paying customer: the address does not change, so whatever the customer's partner has already allowlisted goes on working. A trial cannot renew into itself, so name the plan to move to — called without one it returns the plans that can be moved to. Pressing it twice quotes the same reference rather than raising a second invoice.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
planNoSlug from list_plans. Defaults to the plan the lease is already on; required to leave a trial.
access_tokenYesReturned by order_lease. The only credential for a lease.

TDQS

A4.5/5.0
Behavior5/5

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

With no annotations, the description carries full burden and excels: it discloses address preservation, trial-to-plan behavior, planless return of eligible plans, and idempotency ('Pressing it twice quotes the same reference rather than raising a second invoice'). This goes well beyond basic function.

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 front-loaded with the core action and then adds logically ordered details on trial, plan, and idempotency. Every sentence contributes; however, it is moderately long, so not a perfect 5.

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 tool with no output schema or annotations, the description covers key behavior, edge cases, and idempotency, making it largely complete. It doesn't detail error conditions or return formats, but for this simplicity level it's adequate.

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 covers both parameters with helpful descriptions (e.g., plan defaults, access_token provenance). The description adds extra semantics: the plan behavior when omitted on a trial and the idempotency consideration, which are not in the schema. This justifies a score above the 3 baseline.

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 opens with 'Raise an invoice for another term and keep the same addresses' — a specific verb and resource that clearly distinguishes renewal from sibling tools like order_lease or lease_status. It also ties to the trial-to-paying transition, making the purpose unambiguous.

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?

It provides contextual guidance: 'This is how a trial becomes a paying customer' and explains when plan is needed and what happens if omitted. While it doesn't explicitly contrast with alternatives, the trial-to-payment scenario gives clear use case. Could be improved by naming when not to use, but overall strong.

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